:root {
  color-scheme: light;
  --paper: #e8e8e6;
  --ink: #050505;
  --dark: #030303;
  --cream: #f3eadc;
  --soft: #9c9c99;
  --muted: #777774;
  --dock: rgba(33, 33, 33, .78);
  --radius-pill: 10px;
  --sans: "Arial Black", "Arial Narrow", "Avenir Next Condensed", "Helvetica Neue", Arial, "PingFang TC", sans-serif;
  --body: "Avenir Next", "Helvetica Neue", Arial, "PingFang TC", sans-serif;
  --mono: "SF Mono", ui-monospace, Menlo, Consolas, monospace;
  --side-safe-content-width: min(1180px, calc(100vw - clamp(180px, 15vw, 260px)));
}

.filter-defs {
  position: fixed;
  width: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

* {
  box-sizing: border-box;
}

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

html.lenis,
html.lenis body {
  height: auto;
}

html.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

html.lenis.lenis-stopped {
  overflow: clip;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.is-loading {
  overflow: hidden;
}

body.is-loading main {
  opacity: 0;
  filter: blur(8px);
  transform: scale(.986);
}

body.is-ready main {
  animation: page-enter 880ms cubic-bezier(.16, 1, .3, 1) both;
}

body.is-loading .corner,
body.is-loading .hero-meta {
  opacity: 0;
  pointer-events: none;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 120;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: clamp(18px, 3vw, 46px);
  color: var(--ink);
  background: #fff8fa;
  overflow: hidden;
}

.site-loader::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 42% 52%, rgba(255, 143, 167, .18), transparent 27rem),
    radial-gradient(circle at 70% 34%, rgba(255, 198, 211, .22), transparent 21rem),
    linear-gradient(180deg, rgba(255, 255, 255, .92), transparent 24%, transparent 80%, rgba(255, 232, 238, .44));
  opacity: .95;
  pointer-events: none;
}

.site-loader.is-hiding {
  pointer-events: none;
  animation: loader-exit 720ms cubic-bezier(.76, 0, .24, 1) both;
}

.site-loader.is-hidden {
  display: none;
}

.loader-grid {
  position: absolute;
  inset: clamp(22px, 4vw, 70px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(5, 5, 5, .07);
  opacity: .58;
  pointer-events: none;
}

.loader-grid span {
  border-left: 1px solid rgba(5, 5, 5, .06);
}

.loader-grid span:last-child {
  border-right: 1px solid rgba(5, 5, 5, .06);
}

.loader-corner {
  position: absolute;
  top: clamp(24px, 4vw, 58px);
  z-index: 1;
  color: rgba(5, 5, 5, .58);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 950;
  line-height: 1.05;
  letter-spacing: 0;
  text-transform: uppercase;
}

.loader-corner-left {
  left: clamp(20px, 4vw, 70px);
}

.loader-corner-right {
  right: clamp(20px, 4vw, 70px);
  text-align: right;
}

.loader-panel {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100vw - clamp(48px, 10vw, 160px)));
  align-self: center;
}

.loader-kicker,
.loader-status {
  font-family: var(--mono);
  font-size: clamp(11px, 1vw, 14px);
  line-height: 1.2;
}

.loader-kicker {
  display: block;
  margin-bottom: clamp(18px, 2.6vw, 34px);
  color: rgba(180, 71, 95, .82);
}

.loader-word {
  display: inline-flex;
  align-items: baseline;
  font-family: var(--sans);
  font-size: clamp(58px, 9.2vw, 112px);
  font-weight: 950;
  line-height: .82;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: normal;
  max-width: 10ch;
  transform-origin: left center;
  animation: loader-word-enter 820ms cubic-bezier(.16, 1, .3, 1) both;
  text-align: left;

}

.loader-word-dots {
  width: 1.5em;
}

.loader-word span {
  display: inline-flex;
}

.loader-status {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: clamp(24px, 3.4vw, 46px);
  color: rgba(5, 5, 5, .58);
}

.loader-message {
  display: inline-flex;
  align-items: baseline;
  white-space: nowrap;
}

.loader-dots {
  display: inline-flex;
  width: 1.8em;
}

.loader-dots span {
  display: inline-block;
  animation: loader-dot 920ms ease-in-out infinite;
}

.loader-dots span:nth-child(2) {
  animation-delay: 140ms;
}

.loader-dots span:nth-child(3) {
  animation-delay: 280ms;
}

.loader-percent::after {
  content: "%";
}

.loader-bar {
  position: relative;
  height: 1px;
  margin-top: 16px;
  overflow: hidden;
  background: rgba(5, 5, 5, .16);
}

.loader-bar span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 100%;
  background: var(--meadow-green);
  transform: scaleX(0);
  transform-origin: left center;
  animation: loader-fill 1450ms cubic-bezier(.16, 1, .3, 1) both;
}

a,
button {
  color: inherit;
  font: inherit;
}

button {
  cursor: pointer;
}

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

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

.product-page {
  --meadow-green: #ff8fa7;
  --meadow-green-deep: #b4475f;
  --meadow-moss: #f0b9c4;
  --meadow-ink: #050706;
}

.product-page .loader-kicker,
.product-page .section-eyebrow,
.product-page .diffusion-card span,
.product-page .harness-pipeline span,
.product-page .demo-copy span,
.product-page .task-matrix strong {
  color: rgba(255, 143, 167, .82);
}

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

.identity-hero {
  --hero-scroll-distance: 0px;
  --hero-blur-opacity: 0;
  position: relative;
  min-height: 100dvh;
  background: var(--paper);
  overflow: hidden;
}

.hero-pin {
  position: relative;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 6vh 24px 9vh;
  background: var(--paper);
  overflow: hidden;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-video-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(232, 232, 226, .16);
  opacity: var(--hero-blur-opacity);
  -webkit-backdrop-filter: blur(16px) saturate(1.06);
  backdrop-filter: blur(16px) saturate(1.06);
  pointer-events: none;
}

.hero-reverse-video,
.hero-sequence-canvas {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  filter: saturate(.82) contrast(1.06) brightness(1.04);
  mix-blend-mode: multiply;
  transform: scale(1.035);
  transition: opacity 1.1s cubic-bezier(.16, 1, .3, 1), transform 1.6s cubic-bezier(.16, 1, .3, 1);
}

.hero-sequence-canvas {
  position: absolute;
  inset: 0;
  display: none;
}

body.is-ready .hero-reverse-video,
body.is-ready .hero-video-bg.uses-sequence .hero-sequence-canvas {
  opacity: .82;
  transform: scale(1.035);
}

body.is-ready .hero-video-bg.uses-sequence .hero-reverse-video {
  opacity: 0;
}

body.is-ready .hero-video-bg.is-video-released .hero-reverse-video {
  opacity: .74;
}

body.is-ready .hero-video-bg.is-video-released .hero-sequence-canvas {
  opacity: 0;
}

.brand-universal .hero-wordmark {
  width: min(92vw, 1380px);
  font-size: clamp(46px, 10.2vw, 176px);
}

.brand-universal .loader-word {
  font-size: clamp(54px, 8.2vw, 104px);
  max-width: 10ch;
}

.hero-pin::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, .4);
  pointer-events: none;
}

.hero-pin::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 10vh 8vw auto auto;
  width: min(52vw, 680px);
  aspect-ratio: 1;
  border-radius: 46% 54% 52% 48%;
  background:
    radial-gradient(circle at 38% 34%, rgba(245, 239, 226, .72), transparent 34%),
    radial-gradient(circle at 66% 58%, rgba(146, 166, 146, .24), transparent 42%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, .32), transparent 64%);
  filter: blur(34px);
  opacity: .72;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.hero-plush-canvas {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
  opacity: 0;
  mix-blend-mode: normal;
  transition: opacity 900ms cubic-bezier(.16, 1, .3, 1);
}

.hero-pin.has-plush-models .hero-plush-canvas {
  opacity: .92;
}

.corner {
  position: absolute;
  top: clamp(24px, 4.5vh, 54px);
  z-index: 35;
  font-family: var(--sans);
  font-size: 11px;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  color: rgba(243, 234, 220, .92);
  white-space: nowrap;
  text-shadow: 0 1px 12px rgba(0, 0, 0, .26);
}

.corner-left {
  left: clamp(24px, 4.8vw, 80px);
  text-align: left;
}

.corner-center {
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  text-transform: none;
}

.corner-right {
  right: clamp(24px, 4.8vw, 80px);
  text-align: right;
}

.hero-wordmark {
  --rgb-dispersion-opacity: 0;
  --rgb-shift: 0;
  position: relative;
  z-index: 4;
  display: grid;
  place-items: center;
  width: min(1160px, calc(100vw - 96px));
  transform: translateY(1.5vh);
  font-family: var(--sans);
  font-size: clamp(50px, 10vw, 124px);
  font-weight: 950;
  line-height: .82;
  letter-spacing: 0;
  color: #fff;
  text-transform: uppercase;
  isolation: isolate;
  text-align: center;
  overflow: visible;
}

.hero-wordmark > .word-line {
  display: block;
  transform: none;
}

.hero-wordmark .word-line-main {
  position: relative;
  z-index: 2;
  max-width: 100%;
  opacity: 1;
  transform: none;
  white-space: nowrap;
  will-change: opacity, transform;
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
}

.hero-wordmark .hero-letter {
  display: inline-block;
  opacity: 0;
  transform: translate3d(0, -72px, 0);
  will-change: opacity, transform, filter;
}

.hero-wordmark .hero-letter-space {
  width: .26em;
}

.hero-wordmark-rgb-canvas {
  display: none;
}

.hero-wordmark.is-rgb-burst .word-line-main {
  animation: wordmark-rgb-dispersion 1900ms cubic-bezier(.16, 1, .3, 1) both;
}

.hero-meta {
  position: absolute;
  left: 50%;
  top: calc(50% + min(14vw, 158px));
  z-index: 3;
  transform: translateX(-50%);
  width: min(780px, 86vw);
  overflow: clip;
  font-family: var(--sans);
  font-size: clamp(15px, 2.1vw, 30px);
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
}

.hero-marquee {
  overflow: clip;
  mask-image: linear-gradient(90deg, transparent, rgb(0 0 0) 9%, rgb(0 0 0) 91%, transparent);
}

.hero-marquee-track {
  display: inline-flex;
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
  min-width: max-content;
  animation: hero-marquee 18s linear infinite;
}

.hero-marquee-track > span::before {
  content: "/";
  margin-right: clamp(18px, 2.5vw, 34px);
  opacity: .42;
}

.hero-marquee-track > span:first-child::before {
  content: "";
  margin: 0;
}

.marquee-slot {
  --marquee-word-slot: clamp(210px, 15vw, 220px);
  display: inline-flex;
  align-items: baseline;
  flex: 0 0 var(--marquee-word-slot);
  width: var(--marquee-word-slot);
}

.marquee-word {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0;
  white-space: nowrap;
  transition: opacity .26s ease, transform .26s cubic-bezier(.16, 1, .3, 1);
}

.marquee-word.is-changing {
  opacity: 0;
  transform: translateY(-12px);
}

.hero-sales-card {
  position: absolute;
  left: 50%;
  bottom: clamp(28px, 4.8vh, 54px);
  z-index: 5;
  width: min(850px, calc(100vw - 48px));
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px 18px;
  align-items: center;
  min-height: 72px;
  padding: 12px 14px 12px 22px;
  color: var(--ink);
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(5, 5, 5, .12);
  border-radius: 999px;
  box-shadow: 0 28px 60px rgba(48, 15, 24, .14);
  -webkit-backdrop-filter: blur(18px) saturate(1.08);
  backdrop-filter: blur(18px) saturate(1.08);
  transform: translateX(-50%);
}

.hero-sales-card span {
  color: rgba(180, 71, 95, .9);
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1;
  text-transform: uppercase;
}

.hero-sales-card strong {
  min-width: 0;
  font-family: var(--body);
  font-size: clamp(15px, 1.25vw, 18px);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: 0;
}

.hero-sales-card a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  color: #fff;
  background: var(--meadow-green);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 950;
  text-decoration: none;
  text-transform: none;
  white-space: nowrap;
}

.about-strip {
  position: relative;
  min-height: 100dvh;
  padding: 118px 24px 140px;
  background: var(--paper);
  overflow: hidden;
}

.about-repeat {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  overflow: clip;
  opacity: .045;
  pointer-events: none;
}

.about-repeat span {
  min-width: 0;
  font-family: var(--sans);
  font-size: clamp(120px, 20vw, 320px);
  font-weight: 950;
  letter-spacing: 0;
}

.about-object-video {
  position: absolute;
  z-index: 0;
  top: 50%;
  right: 0;
  height: min(80dvh, 760px);
  width: auto;
  max-width: none;
  transform: translate(15%, -50%);
  object-fit: contain;
  opacity: 0;
  mix-blend-mode: multiply;
  filter: contrast(1.08) saturate(.92);
  pointer-events: none;
  transition: opacity 1.4s cubic-bezier(.16, 1, .3, 1);
}

.about-object-video[hidden] {
  display: none;
}

.about-object-video.is-video-ready.is-active {
  opacity: .44;
}

.about-object-video.is-alpha-video.is-video-ready.is-active {
  opacity: .38;
  mix-blend-mode: normal;
  filter: contrast(1.02) saturate(.94);
}

.about-object-video.is-alpha-image {
  background: transparent;
}

.about-layout {
  position: relative;
  z-index: 2;
  width: min(1180px, 100%);
  min-height: 70dvh;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(240px, .62fr) minmax(0, 1fr);
  gap: clamp(34px, 8vw, 118px);
  align-items: center;
}

.about-media {
  position: relative;
  width: min(520px, 100%);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #050505;
}

.about-media img,
.about-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: none;
}

.about-media img {
  filter: grayscale(1) contrast(1.08);
}

.about-media-video {
  box-shadow: inset 0 0 0 1px rgba(5, 5, 5, .24);
}

.about-product-video {
  display: block;
  object-fit: contain;
  background: #050505;
  filter: grayscale(.22) contrast(1.08) saturate(.9);
}

.shader-source-image {
  opacity: 0;
}

.media-shader-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0;
  pointer-events: none;
  transition: opacity .36s ease;
}

.media-shader-canvas.is-shader-ready {
  opacity: 1;
}

.about-copy h2 {
  margin: 0 0 26px;
  max-width: 11.5ch;
  font-family: var(--sans);
  font-size: clamp(54px, 7.8vw, 118px);
  line-height: .82;
  letter-spacing: 0;
  font-weight: 950;
  text-transform: uppercase;
}

.about-copy p {
  max-width: 620px;
  margin: 0 0 30px;
  color: #2e2e2c;
  font-size: clamp(18px, 2.1vw, 28px);
  line-height: 1.25;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 950;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link::after {
  content: "";
  width: 40px;
  height: 2px;
  background: currentColor;
}

.section-eyebrow {
  display: inline-flex;
  width: fit-content;
  margin-bottom: clamp(18px, 2vw, 30px);
  color: rgba(255, 143, 167, .74);
  font-family: var(--mono);
  font-size: clamp(11px, 1vw, 14px);
  line-height: 1;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.diffusion-primer-section {
  position: relative;
  padding: clamp(112px, 13vw, 190px) 20px clamp(120px, 14vw, 210px);
  color: var(--cream);
  background:
    linear-gradient(180deg, #030303 0%, #090b08 52%, #030303 100%);
  overflow: hidden;
}

.diffusion-primer-section::before {
  content: "dLLM";
  position: absolute;
  left: -3vw;
  top: 4vw;
  color: rgba(243, 234, 220, .035);
  font-family: var(--sans);
  font-size: clamp(120px, 28vw, 430px);
  font-weight: 950;
  line-height: .75;
  letter-spacing: 0;
  pointer-events: none;
}

.diffusion-primer-inner {
  position: relative;
  z-index: 1;
  width: var(--side-safe-content-width);
  margin: 0 auto;
}

.diffusion-primer-inner h2,
.harness-copy h2,
.demo-proof-heading h2 {
  margin: 0;
  max-width: 12.8ch;
  font-family: var(--sans);
  font-size: clamp(52px, 8.6vw, 132px);
  font-weight: 950;
  line-height: .82;
  letter-spacing: 0;
  text-transform: uppercase;
}

.diffusion-lede {
  max-width: 980px;
  margin: clamp(28px, 4vw, 54px) 0 clamp(42px, 6vw, 88px);
  color: rgba(243, 234, 220, .7);
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.32;
}

.diffusion-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(243, 234, 220, .11);
}

.diffusion-card {
  min-height: 320px;
  padding: clamp(22px, 3vw, 38px);
  background:
    linear-gradient(180deg, rgba(255, 143, 167, .04), transparent 42%),
    #050505;
}

.diffusion-card span,
.harness-pipeline span,
.demo-copy span,
.task-matrix strong {
  display: block;
  margin-bottom: 18px;
  color: rgba(255, 143, 167, .78);
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.diffusion-card h3 {
  margin: 0 0 18px;
  max-width: 10ch;
  color: var(--cream);
  font-family: var(--sans);
  font-size: clamp(24px, 2.7vw, 42px);
  font-weight: 950;
  line-height: .9;
  letter-spacing: 0;
  text-transform: uppercase;
}

.diffusion-card p {
  margin: 0;
  color: rgba(243, 234, 220, .66);
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.42;
}

.harness-section {
  position: relative;
  padding: clamp(112px, 13vw, 180px) 20px;
  color: var(--ink);
  background: var(--paper);
}

.harness-inner {
  width: var(--side-safe-content-width);
  margin: 0 auto;
  display: grid;
  row-gap: 0;
}

.harness-main {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, .38fr) minmax(0, .62fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
}

.harness-copy {
  position: sticky;
  top: 34px;
  align-self: start;
}

.harness-copy .section-eyebrow {
  color: #326d38;
}

.harness-copy h2 {
  max-width: 7.8ch;
  color: var(--ink);
  font-size: clamp(48px, 5vw, 84px);
  line-height: .86;
  overflow-wrap: normal;
  word-break: normal;
}

.harness-copy p {
  max-width: 620px;
  margin: clamp(28px, 4vw, 48px) 0 0;
  color: #30302e;
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.28;
}

.harness-pipeline {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: rgba(5, 5, 5, .16);
}

.harness-pipeline li {
  min-height: 164px;
  padding: clamp(28px, 3.2vw, 46px);
  background: #f0f0ed;
}

.harness-pipeline strong {
  display: block;
  margin-bottom: 12px;
  font-family: var(--sans);
  font-size: clamp(26px, 3vw, 46px);
  font-weight: 950;
  line-height: .88;
  letter-spacing: 0;
  text-transform: uppercase;
}

.harness-pipeline p {
  max-width: 720px;
  margin: 0;
  color: #3a3a37;
  font-size: clamp(16px, 1.5vw, 21px);
  line-height: 1.35;
}

.harness-terminal {
  display: grid;
  gap: 12px;
  padding: clamp(22px, 3vw, 34px);
  color: rgba(255, 143, 167, .82);
  background: #050505;
  font-family: var(--mono);
  font-size: clamp(13px, 1.35vw, 18px);
  line-height: 1.35;
  overflow: hidden;
}

.harness-terminal span {
  display: block;
  overflow-wrap: anywhere;
}

@media (max-width: 1160px) {
  .harness-inner {
    grid-template-columns: 1fr;
  }

  .harness-copy {
    position: relative;
    top: auto;
  }

  .harness-copy h2 {
    max-width: 9.2ch;
    font-size: clamp(52px, 9vw, 96px);
  }

  .harness-copy p {
    max-width: 760px;
  }
}

.demo-proof-section {
  padding: clamp(112px, 13vw, 190px) 20px clamp(136px, 15vw, 230px);
  color: var(--cream);
  background:
    radial-gradient(circle at 72% 16%, rgba(255, 143, 167, .09), transparent 27rem),
    #030303;
}

.demo-proof-heading,
.task-matrix,
.demo-grid {
  width: var(--side-safe-content-width);
  margin-left: auto;
  margin-right: auto;
}

.demo-proof-heading p {
  max-width: 930px;
  margin: clamp(28px, 4vw, 52px) 0 0;
  color: rgba(243, 234, 220, .68);
  font-size: clamp(18px, 2vw, 27px);
  line-height: 1.32;
}

.task-matrix {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(48px, 6vw, 84px);
  background: rgba(243, 234, 220, .12);
}

.task-matrix div {
  min-height: 190px;
  padding: clamp(22px, 3vw, 36px);
  background: rgba(255, 255, 255, .035);
}

.task-matrix p {
  margin: 0;
  color: rgba(243, 234, 220, .68);
  font-size: clamp(15px, 1.45vw, 20px);
  line-height: 1.4;
}

.demo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 30px);
  margin-top: clamp(42px, 6vw, 84px);
}

.demo-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  background: rgba(243, 234, 220, .045);
  overflow: hidden;
}

.demo-card-wide {
  grid-column: span 2;
}

.demo-media {
  aspect-ratio: 16 / 10;
  background: #050505;
  overflow: hidden;
}

.demo-media img,
.demo-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.demo-media img {
  filter: grayscale(.55) contrast(1.12) saturate(.72);
}

.demo-card-wide .demo-media {
  aspect-ratio: 21 / 10;
}

.demo-card-video .demo-media {
  aspect-ratio: 4 / 3;
}

.demo-card-video .demo-media video {
  display: block;
  object-fit: contain;
  background: #050505;
}

.demo-copy {
  padding: clamp(20px, 2.5vw, 34px);
}

.demo-copy h3 {
  margin: 0 0 14px;
  color: var(--cream);
  font-family: var(--sans);
  font-size: clamp(25px, 3vw, 48px);
  font-weight: 950;
  line-height: .88;
  letter-spacing: 0;
  text-transform: uppercase;
}

.demo-copy p {
  margin: 0;
  color: rgba(243, 234, 220, .68);
  font-size: clamp(15px, 1.4vw, 19px);
  line-height: 1.42;
}

.product-page .diffusion-primer-section::before {
  content: "LOCAL";
}

.product-page .diffusion-card {
  background:
    linear-gradient(180deg, rgba(255, 143, 167, .055), transparent 44%),
    #050706;
}

.product-page .about-media.product-screenshot {
  background: #050706;
  box-shadow:
    0 34px 80px rgba(5, 5, 5, .22),
    inset 0 0 0 1px rgba(5, 5, 5, .18);
}

.product-page .about-media.product-screenshot img {
  object-fit: cover;
  object-position: center;
  filter: contrast(1.04) saturate(.9);
}

.product-page .about-copy h2 {
  max-width: 12.5ch;
  font-size: clamp(48px, 6.6vw, 96px);
  line-height: .9;
}

.product-page .demo-media img {
  filter: grayscale(.08) contrast(1.08) saturate(.88);
}

.plan-section {
  position: relative;
  padding: clamp(112px, 13vw, 190px) 20px;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 143, 167, .17), transparent 25rem),
    var(--paper);
  overflow: hidden;
}

.plan-section::before {
  content: "TRIAL";
  position: absolute;
  right: -4vw;
  top: 3vw;
  color: rgba(5, 5, 5, .045);
  font-family: var(--sans);
  font-size: clamp(112px, 24vw, 360px);
  font-weight: 950;
  line-height: .8;
  letter-spacing: 0;
  pointer-events: none;
}

.plan-inner {
  position: relative;
  z-index: 1;
  width: var(--side-safe-content-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(300px, .34fr) minmax(0, .66fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: start;
}

.plan-copy {
  position: sticky;
  top: 34px;
}

.plan-copy .section-eyebrow {
  color: var(--meadow-green-deep);
}

.plan-copy h2 {
  margin: 0;
  max-width: 7.2ch;
  font-family: var(--sans);
  font-size: clamp(52px, 6.2vw, 104px);
  font-weight: 950;
  line-height: .86;
  letter-spacing: 0;
  text-transform: uppercase;
}

.plan-copy p {
  max-width: 650px;
  margin: clamp(26px, 3vw, 42px) 0 0;
  color: #30302e;
  font-size: clamp(18px, 2vw, 27px);
  line-height: 1.3;
}

.plan-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(5, 5, 5, .16);
}

.plan-cards article {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 560px;
  padding: clamp(24px, 3vw, 42px);
  background: #f0f0ed;
}

.plan-cards article.is-featured {
  background:
    linear-gradient(180deg, rgba(255, 143, 167, .12), transparent 38%),
    #e7eee6;
}

.plan-badge {
  position: absolute;
  top: clamp(22px, 2.8vw, 34px);
  right: clamp(22px, 2.8vw, 34px);
  padding: 8px 12px;
  color: var(--dark);
  background: rgba(255, 143, 167, .62);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.plan-cards span {
  display: block;
  margin: 0 0 28px;
  color: #35633a;
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.plan-cards strong {
  display: block;
  margin: 0 0 12px;
  font-family: var(--sans);
  font-size: clamp(36px, 3.9vw, 58px);
  font-weight: 950;
  line-height: .86;
  letter-spacing: 0;
  white-space: nowrap;
}

.plan-cards p {
  margin: 0 0 28px;
  color: #333431;
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.35;
}

.plan-cards ul {
  display: grid;
  gap: 14px;
  margin: 0 0 34px;
  padding: 0;
  list-style: none;
  color: #222421;
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.25;
}

.plan-cards li {
  position: relative;
  padding-left: 26px;
}

.plan-cards li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .42em;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--meadow-green);
  box-shadow: inset 0 0 0 3px #f0f0ed;
}

.plan-cards article.is-featured li::before {
  box-shadow: inset 0 0 0 3px #e7eee6;
}

.plan-cards a {
  align-self: end;
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 0 22px;
  color: var(--dark);
  background: var(--meadow-green);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 950;
  text-decoration: none;
  text-transform: uppercase;
}

.capability-section,
.demo-preview-section,
.benchmark-section,
.download-section,
.faq-section {
  position: relative;
  padding: clamp(88px, 11vw, 160px) 20px;
  overflow: hidden;
}

.capability-section {
  --capability-section-pad-y: clamp(74px, 8vw, 116px);
  isolation: isolate;
  padding-top: var(--capability-section-pad-y);
  padding-bottom: var(--capability-section-pad-y);
  color: var(--ink);
  background:
    radial-gradient(circle at 84% 12%, rgba(255, 143, 167, .14), transparent 26rem),
    linear-gradient(180deg, var(--paper), #e7e9e3);
  overflow: visible;
}

.capability-scroll-video {
  position: sticky;
  top: 0;
  z-index: 0;
  left: auto;
  width: 100vw;
  height: 100dvh;
  margin: calc(var(--capability-section-pad-y) * -1) calc(50% - 50vw) -100dvh;
  overflow: hidden;
  pointer-events: none;
  background: #dfe4dc url("../assets/section2-scroll-last-frame.jpg") center / cover no-repeat;
  transform: none;
  isolation: isolate;
}

.capability-scroll-video::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(244, 242, 234, .82), rgba(244, 242, 234, .2) 44%, rgba(255, 232, 238, .54)),
    linear-gradient(180deg, rgba(244, 242, 234, .74), rgba(244, 242, 234, .08) 42%, rgba(231, 233, 227, .78));
}

.capability-scroll-video-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(.94) contrast(1.02);
  transform: translateZ(0);
  opacity: 1;
}

.capability-section.has-scroll-video-ready .capability-scroll-video-media {
  opacity: 1;
}

.work-plush-canvas {
  position: absolute;
  top: clamp(260px, 20vw, 360px);
  right: max(-86px, calc((100vw - min(var(--side-safe-content-width), 1340px)) / 2 - 140px));
  width: min(43vw, 640px);
  height: min(56vw, 760px);
  min-height: 560px;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  filter: drop-shadow(0 34px 52px rgba(28, 33, 26, .13));
  transition: opacity .8s cubic-bezier(.16, 1, .3, 1);
}

.capability-section.has-work-plush-models .work-plush-canvas {
  opacity: .96;
}

@media (max-width: 1180px) {
  .work-plush-canvas {
    top: clamp(320px, 31vw, 430px);
    right: -12vw;
    width: min(50vw, 560px);
    height: min(64vw, 660px);
    min-height: 500px;
    opacity: .72;
  }

  .capability-section.has-work-plush-models .work-plush-canvas {
    opacity: .72;
  }
}

.capability-intro,
.demo-preview-copy,
.benchmark-heading,
.download-copy,
.faq-heading {
  position: relative;
  z-index: 2;
  width: min(var(--side-safe-content-width), 1120px);
  margin: 0 auto clamp(38px, 5vw, 70px);
}

.capability-intro h2,
.demo-preview-copy h2,
.benchmark-heading h2,
.download-copy h2,
.faq-heading h2 {
  max-width: 920px;
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(44px, 7vw, 106px);
  font-weight: 950;
  line-height: .88;
  letter-spacing: 0;
  text-transform: uppercase;
}

.capability-intro p,
.demo-preview-copy p,
.benchmark-heading p,
.download-copy p {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(35, 35, 32, .78);
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.35;
}

#download-heading {
  max-width: 1120px;
}

.scenario-grid {
  position: relative;
  z-index: 2;
  width: min(var(--side-safe-content-width), 1340px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 2vw, 30px);
}

.scenario-card {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(620px, 46vw);
  min-height: auto;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(5, 5, 5, .12);
  box-shadow: 0 26px 70px rgba(22, 25, 21, .08);
  backdrop-filter: blur(18px) saturate(116%);
  -webkit-backdrop-filter: blur(18px) saturate(116%);
  overflow: hidden;
}

.scenario-card:nth-child(odd) {
  align-self: flex-start;
}

.scenario-card:nth-child(even) {
  align-self: flex-end;
  margin-top: clamp(-260px, -11vw, -126px);
}

.scenario-card:nth-child(3) {
  margin-top: clamp(-220px, -8vw, -104px);
}

.scenario-card:nth-child(4) {
  margin-top: clamp(-280px, -12vw, -136px);
}

.scenario-media {
  min-height: 260px;
  background: #dfe4dc;
  overflow: hidden;
}

.scenario-media img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  display: block;
  object-fit: cover;
  filter: contrast(1.08) saturate(.92);
}

.scenario-copy {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: clamp(24px, 3vw, 40px);
}

.scenario-copy span,
.benchmark-stats span {
  color: var(--meadow-green-deep);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.scenario-copy h3 {
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 950;
  line-height: .92;
  letter-spacing: 0;
  text-transform: uppercase;
}

.scenario-copy p,
.install-steps p,
.faq-list p {
  margin: 0;
  color: rgba(35, 35, 32, .74);
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.45;
}

.scenario-copy > small {
  display: block;
  max-width: 100%;
  margin-top: 6px;
  padding: 14px 16px;
  color: #20231f;
  background: rgba(255, 143, 167, .16);
  border-left: 4px solid var(--meadow-green);
  font-family: var(--sans);
  font-size: clamp(15px, 1.3vw, 17px);
  font-weight: 760;
  line-height: 1.35;
  white-space: normal;
  overflow-wrap: anywhere;
}

.scenario-chat {
  position: relative;
  display: grid;
  gap: 8px;
  max-width: min(100%, 520px);
  margin-top: 8px;
  color: #1f211d;
  overflow-wrap: anywhere;
}

.scenario-chat-label {
  color: rgba(35, 35, 32, .56);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 760;
  line-height: 1;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.scenario-chat-bubble {
  position: relative;
  display: inline-block;
  justify-self: start;
  max-width: 100%;
  padding: 14px 17px 15px;
  color: #1f211d;
  background: rgba(255, 143, 167, .15);
  border: 1px solid rgba(255, 143, 167, .34);
  border-radius: 22px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .62);
  font-family: var(--sans);
  font-size: clamp(17px, 1.6vw, 21px);
  font-weight: 780;
  line-height: 1.32;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.scenario-chat-follow {
  color: rgba(35, 35, 32, .62);
  font-family: var(--sans);
  font-size: clamp(13px, 1.15vw, 15px);
  font-weight: 650;
  line-height: 1.35;
}

.demo-preview-section {
  color: var(--cream);
  background:
    radial-gradient(circle at 78% 10%, rgba(255, 143, 167, .16), transparent 24rem),
    linear-gradient(180deg, #111610, #070907 72%);
}

.demo-preview-copy p {
  color: rgba(244, 242, 234, .72);
}

.demo-preview-copy h2 {
  max-width: 820px;
  font-size: clamp(44px, 6vw, 84px);
  line-height: .92;
}

.feature-carousel {
  --feature-side-offset: clamp(250px, 32vw, 430px);
  --feature-far-offset: clamp(470px, 54vw, 720px);
  position: relative;
  width: min(var(--side-safe-content-width), 1220px);
  min-height: clamp(610px, 56vw, 720px);
  margin: 0 auto;
  isolation: isolate;
}

.feature-carousel::before,
.feature-carousel::after {
  content: "";
  position: absolute;
  z-index: 6;
  top: 0;
  bottom: 0;
  width: clamp(52px, 9vw, 128px);
  pointer-events: none;
}

.feature-carousel::before {
  left: 0;
  background: linear-gradient(90deg, #0d110c 0%, rgba(13, 17, 12, 0) 100%);
}

.feature-carousel::after {
  right: 0;
  background: linear-gradient(270deg, #0d110c 0%, rgba(13, 17, 12, 0) 100%);
}

.demo-preview-grid {
  position: relative;
  width: 100%;
  min-height: clamp(610px, 56vw, 720px);
  margin: 0 auto;
  overflow: hidden;
  perspective: 1200px;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.demo-preview-grid.is-dragging {
  cursor: grabbing;
}

.demo-preview-grid:focus-visible {
  outline: 2px solid rgba(118, 255, 169, .72);
  outline-offset: 10px;
  border-radius: 30px;
}

.feature-card {
  position: absolute;
  left: 50%;
  top: 10px;
  display: grid;
  grid-template-rows: minmax(190px, .72fr) auto;
  gap: 0;
  width: min(650px, calc(100vw - 112px));
  min-height: clamp(540px, 48vw, 650px);
  align-content: stretch;
  padding: 0;
  color: var(--cream);
  background:
    linear-gradient(180deg, rgba(255, 143, 167, .11), rgba(244, 242, 234, .035)),
    #111610;
  border: 1px solid rgba(244, 242, 234, .14);
  border-radius: 22px;
  opacity: 0;
  pointer-events: none;
  text-decoration: none;
  transform: translateX(-50%) scale(.58);
  transform-origin: center center;
  transition:
    transform .56s cubic-bezier(.16, 1, .3, 1),
    opacity .42s ease,
    filter .42s ease,
    background .28s ease,
    border-color .28s ease;
  will-change: transform, opacity;
}

.feature-card.is-active {
  z-index: 5;
  opacity: 1;
  pointer-events: auto;
  filter: none;
  transform: translateX(-50%) scale(1.02);
}

.feature-card.is-prev {
  z-index: 3;
  opacity: .58;
  filter: saturate(.82) brightness(.82);
  transform: translateX(calc(-50% - var(--feature-side-offset))) scale(.78) rotateY(10deg);
}

.feature-card.is-next {
  z-index: 3;
  opacity: .58;
  filter: saturate(.82) brightness(.82);
  transform: translateX(calc(-50% + var(--feature-side-offset))) scale(.78) rotateY(-10deg);
}

.feature-card.is-far-prev {
  z-index: 1;
  opacity: .2;
  filter: blur(.4px) saturate(.65) brightness(.7);
  transform: translateX(calc(-50% - var(--feature-far-offset))) scale(.64) rotateY(16deg);
}

.feature-card.is-far-next {
  z-index: 1;
  opacity: .2;
  filter: blur(.4px) saturate(.65) brightness(.7);
  transform: translateX(calc(-50% + var(--feature-far-offset))) scale(.64) rotateY(-16deg);
}

.feature-card.is-active:hover {
  transform: translateX(-50%) translateY(-5px) scale(1.025);
  background:
    linear-gradient(180deg, rgba(255, 143, 167, .18), rgba(244, 242, 234, .05)),
    #131a12;
}

.feature-card.is-recording-card {
  background:
    radial-gradient(circle at 88% 0%, rgba(255, 143, 167, .2), transparent 16rem),
    linear-gradient(180deg, rgba(255, 143, 167, .16), rgba(244, 242, 234, .04)),
    #121b12;
  border-color: rgba(255, 143, 167, .32);
}

.feature-card-media {
  min-height: 210px;
  overflow: hidden;
  border-bottom: 1px solid rgba(244, 242, 234, .12);
  background: #050706;
}

.feature-card-media img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
  filter: contrast(1.08) saturate(.9);
  transition: transform .42s cubic-bezier(.16, 1, .3, 1), filter .42s ease;
  -webkit-user-drag: none;
  user-select: none;
}

.feature-card:hover .feature-card-media img {
  transform: scale(1.035);
  filter: contrast(1.12) saturate(1.02);
}

.feature-card-copy {
  display: grid;
  gap: 16px;
  align-content: start;
  padding: clamp(22px, 3vw, 34px);
}

.demo-preview-grid span {
  color: var(--meadow-green);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.demo-preview-grid strong {
  display: block;
  font-size: clamp(25px, 2.6vw, 38px);
  font-weight: 950;
  line-height: 1.02;
  letter-spacing: 0;
}

.demo-preview-grid small {
  display: block;
  color: rgba(244, 242, 234, .68);
  font-size: 16px;
  font-weight: 720;
  line-height: 1.35;
}

.feature-carousel-button {
  position: absolute;
  z-index: 8;
  top: 50%;
  display: inline-grid;
  width: 50px;
  height: 50px;
  place-items: center;
  padding: 0;
  color: rgba(244, 242, 234, .9);
  background: rgba(18, 23, 17, .72);
  border: 1px solid rgba(244, 242, 234, .16);
  border-radius: 999px;
  box-shadow: 0 18px 54px rgba(0, 0, 0, .28);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform .22s cubic-bezier(.16, 1, .3, 1), border-color .22s ease, background .22s ease;
}

.feature-carousel-button span {
  color: inherit;
  font-family: var(--sans);
  font-size: 30px;
  font-weight: 760;
  line-height: 1;
}

.feature-carousel-button:hover,
.feature-carousel-button:focus-visible {
  background: rgba(47, 90, 49, .92);
  border-color: rgba(118, 255, 169, .42);
  transform: translateY(-50%) scale(1.06);
  outline: none;
}

.feature-carousel-button:active {
  transform: translateY(-50%) scale(.98);
}

.feature-carousel-button-prev {
  left: clamp(4px, 2vw, 28px);
}

.feature-carousel-button-next {
  right: clamp(4px, 2vw, 28px);
}

.demo-preview-section[data-feature-pan] {
  --feature-pan-x: 62vw;
  --feature-pane-height: clamp(680px, 76vh, 820px);
  --feature-pan-height: calc(var(--feature-pane-height) + 120vh);
  min-height: var(--feature-pan-height);
  padding: 0;
  color: var(--cream);
  background: #050706;
  overflow: visible;
  isolation: isolate;
}

.demo-preview-sticky {
  position: sticky;
  top: 0;
  height: var(--feature-pane-height);
  min-height: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  align-content: start;
  align-items: start;
  row-gap: clamp(16px, 2vh, 24px);
  padding: clamp(46px, 5.6vh, 66px) 0 clamp(22px, 3.5vh, 34px);
  overflow: hidden;
  isolation: isolate;
  background: #050706 url("../assets/meadow-feature-scroll-bg-last-frame.jpg") center / cover no-repeat;
}

.demo-preview-bg-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .78;
  filter: saturate(.9) contrast(1.08) brightness(.72);
  transform: none;
}

.demo-preview-sticky::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .62), rgba(0, 0, 0, .28) 42%, rgba(0, 0, 0, .56)),
    linear-gradient(180deg, rgba(0, 0, 0, .34), rgba(0, 0, 0, .18) 52%, rgba(0, 0, 0, .48));
  pointer-events: none;
}

.demo-preview-section[data-feature-pan] .demo-preview-copy {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 56px), 1080px);
  margin: 0 auto 0 clamp(52px, 10vw, 168px);
  color: var(--cream);
}

.demo-preview-section[data-feature-pan] .demo-preview-copy h2 {
  max-width: 1040px;
  color: var(--cream);
  font-size: clamp(36px, 4vw, 58px);
  line-height: .96;
  text-shadow: 0 18px 80px rgba(0, 0, 0, .52);
  text-transform: none;
}

.demo-preview-section[data-feature-pan] .demo-preview-copy p {
  max-width: 690px;
  color: rgba(244, 242, 234, .76);
}

.feature-scroll-lane {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 0;
  align-self: start;
  overflow: visible;
}

.demo-preview-section[data-feature-pan] .demo-preview-grid {
  position: relative;
  display: flex;
  align-items: flex-start;
  width: max-content;
  min-height: 0;
  gap: clamp(16px, 2vw, 30px);
  margin: 0;
  overflow: visible;
  perspective: none;
  cursor: default;
  touch-action: pan-y;
  user-select: auto;
  transform: translate3d(var(--feature-pan-x), 0, 0);
  will-change: transform;
}

.demo-preview-section[data-feature-pan] .demo-preview-grid.is-dragging {
  cursor: default;
}

.demo-preview-section[data-feature-pan] .demo-preview-grid:focus-visible {
  outline: 2px solid rgba(255, 143, 167, .72);
  outline-offset: 8px;
  border-radius: 0;
}

.demo-preview-section[data-feature-pan] .feature-card,
.demo-preview-section[data-feature-pan] .feature-card.is-active,
.demo-preview-section[data-feature-pan] .feature-card.is-prev,
.demo-preview-section[data-feature-pan] .feature-card.is-next,
.demo-preview-section[data-feature-pan] .feature-card.is-far-prev,
.demo-preview-section[data-feature-pan] .feature-card.is-far-next,
.demo-preview-section[data-feature-pan] .feature-card.is-recording-card {
  position: relative;
  left: auto;
  top: auto;
  z-index: 2;
  flex: 0 0 clamp(250px, 22vw, 330px);
  width: clamp(250px, 22vw, 330px);
  height: var(--feature-card-equal-height, auto);
  min-height: 0;
  align-self: flex-start;
  display: grid;
  grid-template-rows: auto auto;
  align-content: start;
  color: var(--cream);
  background:
    linear-gradient(180deg, rgba(244, 242, 234, .08), rgba(244, 242, 234, .025)),
    rgba(13, 17, 12, .62);
  border: 1px solid rgba(244, 242, 234, .22);
  border-radius: 0;
  box-shadow: 0 24px 74px rgba(0, 0, 0, .34);
  opacity: 1;
  filter: none;
  pointer-events: auto;
  transform: none;
  transition: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.demo-preview-section[data-feature-pan] .feature-card:hover,
.demo-preview-section[data-feature-pan] .feature-card.is-active:hover {
  background:
    linear-gradient(180deg, rgba(255, 143, 167, .12), rgba(244, 242, 234, .035)),
    rgba(13, 17, 12, .82);
  transform: none;
}

.demo-preview-section[data-feature-pan] .feature-card-media {
  display: block;
  min-height: 0;
  border-bottom: 1px solid rgba(244, 242, 234, .18);
  overflow: hidden;
  padding: 0;
  background: rgba(0, 0, 0, .34);
}

.demo-preview-section[data-feature-pan] .feature-card-media img {
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: none;
  min-height: 0;
  display: block;
  object-fit: contain;
  filter: contrast(1.08) saturate(.95);
}

.demo-preview-section[data-feature-pan] .feature-card:hover .feature-card-media img {
  transform: none;
  filter: contrast(1.08) saturate(.95);
}

.demo-preview-section[data-feature-pan] .feature-card-copy {
  gap: 12px;
  min-height: 0;
  align-content: start;
  padding: clamp(18px, 2vw, 24px);
}

.demo-preview-section[data-feature-pan] .demo-preview-grid span {
  color: var(--meadow-green);
}

.demo-preview-section[data-feature-pan] .demo-preview-grid small {
  color: rgba(244, 242, 234, .72);
}

.demo-preview-section[data-feature-pan] .demo-preview-grid strong {
  font-size: clamp(22px, 2.2vw, 32px);
}

.benchmark-section {
  color: var(--cream);
  background:
    radial-gradient(circle at 16% 20%, rgba(255, 143, 167, .2), transparent 25rem),
    linear-gradient(180deg, #10140f, #050706 70%);
}

.benchmark-heading p {
  color: rgba(244, 242, 234, .72);
}

.benchmark-layout {
  width: min(var(--side-safe-content-width), 1220px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: stretch;
}

.benchmark-visual {
  border: 1px solid rgba(244, 242, 234, .16);
  background: rgba(244, 242, 234, .055);
}

.benchmark-visual {
  min-height: 520px;
  overflow: hidden;
}

.benchmark-visual img {
  width: 100%;
  height: 100%;
  display: block;
  box-sizing: border-box;
  padding: 18px;
  object-fit: contain;
  background: #050706;
  filter: grayscale(.08) contrast(1.12) saturate(.82);
}

.benchmark-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(244, 242, 234, .16);
  background: #10150f;
}

.benchmark-stats article {
  display: grid;
  align-content: start;
  min-width: 0;
  min-height: 250px;
  padding: clamp(22px, 3vw, 36px);
  border: 0;
  border-right: 1px solid rgba(244, 242, 234, .16);
  border-bottom: 1px solid rgba(244, 242, 234, .16);
  background: #10150f;
}

.benchmark-stats article:nth-child(2n) {
  border-right: 0;
}

.benchmark-stats article:nth-child(n + 3) {
  border-bottom: 0;
}

.benchmark-stats strong {
  display: block;
  margin: 0 0 18px;
  color: var(--cream);
  font-family: var(--sans);
  font-size: clamp(34px, 4.4vw, 62px);
  font-weight: 950;
  line-height: .9;
  letter-spacing: 0;
}

.benchmark-stats article:nth-child(3) strong,
.benchmark-stats article:nth-child(4) strong {
  font-size: clamp(30px, 3.2vw, 46px);
}

.benchmark-stats p {
  margin: 16px 0 0;
  color: rgba(244, 242, 234, .68);
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.42;
}

.stories-section {
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 12%, rgba(255, 143, 167, .2), transparent 23rem),
    linear-gradient(180deg, #f7f7f4, #eeefeb);
  overflow: hidden;
}

.stories-heading {
  width: min(var(--side-safe-content-width), 1160px);
  margin: 0 auto clamp(28px, 5vw, 58px);
}

.stories-heading h2 {
  max-width: 960px;
  margin: 14px 0 0;
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(42px, 6.2vw, 86px);
  font-weight: 950;
  line-height: .9;
  letter-spacing: 0;
}

.stories-heading p {
  max-width: 780px;
  margin: 22px 0 0;
  color: rgba(35, 35, 32, .72);
  font-size: clamp(17px, 1.65vw, 21px);
  line-height: 1.45;
}

.stories-grid {
  width: min(calc(100vw - 28px), 1440px);
  margin: 0 auto;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, 420px);
  gap: clamp(14px, 2vw, 24px);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  padding: 0 clamp(8px, 2vw, 22px) 16px;
  scrollbar-width: thin;
}

.story-card {
  scroll-snap-align: center;
  display: grid;
  grid-template-rows: 220px auto;
  min-height: 660px;
  color: var(--ink);
  background: rgba(255, 255, 255, .62);
  border: 1px solid rgba(5, 5, 5, .14);
  box-shadow: 0 28px 68px rgba(22, 25, 21, .08);
  overflow: hidden;
}

.story-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(.94) contrast(1.04);
}

.story-copy {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: clamp(22px, 2.4vw, 30px);
}

.story-copy span {
  color: var(--meadow-green-deep);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
}

.story-copy h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(26px, 2.6vw, 36px);
  font-weight: 950;
  line-height: .98;
  letter-spacing: 0;
}

.story-copy p {
  margin: 0;
  color: rgba(35, 35, 32, .74);
  font-size: 16px;
  font-weight: 640;
  line-height: 1.52;
}

.download-section {
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 143, 167, .14), transparent 24rem),
    #eeefeb;
}

.install-layout {
  width: min(var(--side-safe-content-width), 1220px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, .37fr) minmax(0, .63fr);
  gap: clamp(22px, 4vw, 52px);
  align-items: start;
}

.install-guide-block,
.pricing-guide-block {
  display: grid;
  gap: 18px;
}

.install-guide-block h3,
.pricing-guide-block h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 950;
  line-height: .94;
  letter-spacing: 0;
}

.install-steps {
  counter-reset: install-step;
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid rgba(5, 5, 5, .14);
  background: rgba(5, 5, 5, .14);
}

.install-steps li {
  counter-increment: install-step;
  position: relative;
  display: grid;
  gap: 10px;
  padding: 24px 24px 24px 72px;
  background: #f4f4f0;
}

.install-steps li::before {
  content: counter(install-step);
  position: absolute;
  left: 22px;
  top: 22px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--dark);
  background: var(--meadow-green);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 900;
}

.install-steps strong {
  display: block;
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 950;
  line-height: 1.05;
}

.download-section .plan-cards {
  align-self: stretch;
}

.download-section .plan-cards article {
  min-height: 520px;
  border-radius: 0;
}

.download-section .plan-badge {
  text-transform: none;
}

.trial-start-button {
  display: inline-flex;
  width: fit-content;
  min-height: 58px;
  margin-top: 34px;
  align-items: center;
  justify-content: center;
  padding: 0 34px;
  color: #fff;
  background: var(--meadow-green);
  border: 1px solid rgba(180, 71, 95, .18);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 950;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 16px 36px rgba(180, 71, 95, .18);
  transition: transform .22s cubic-bezier(.16, 1, .3, 1), background-color .22s ease, box-shadow .22s ease;
}

.trial-start-button:hover {
  transform: translateY(-2px);
  background: #f47d9a;
  box-shadow: 0 20px 44px rgba(180, 71, 95, .2);
}

.trial-start-button:active {
  transform: translateY(1px);
}

.trial-signup-layout {
  width: min(var(--side-safe-content-width), 1160px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .64fr) minmax(280px, .36fr);
  gap: clamp(18px, 3vw, 36px);
  align-items: stretch;
}

.trial-signup-card,
.trial-model-note {
  border: 1px solid rgba(5, 5, 5, .14);
  background: rgba(255, 255, 255, .58);
  box-shadow: 0 28px 72px rgba(22, 25, 21, .08);
}

.trial-signup-card {
  display: grid;
  gap: 18px;
  padding: clamp(26px, 3.4vw, 46px);
}

#trial-signup:target .trial-signup-card {
  animation: trial-card-drop 620ms cubic-bezier(.16, 1, .3, 1) both;
}

#trial-signup:target .trial-model-note {
  animation: trial-card-drop 720ms 80ms cubic-bezier(.16, 1, .3, 1) both;
}

.trial-card-label,
.trial-model-note span {
  color: var(--meadow-green-deep);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.trial-signup-card h3 {
  max-width: 760px;
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(34px, 4.4vw, 62px);
  font-weight: 950;
  line-height: .9;
  letter-spacing: 0;
  text-transform: uppercase;
}

.trial-signup-card p,
.trial-model-note p {
  max-width: 720px;
  margin: 0;
  color: rgba(35, 35, 32, .74);
  font-size: clamp(16px, 1.55vw, 20px);
  line-height: 1.48;
}

.trial-signup-form {
  display: grid;
  gap: 18px;
  margin-top: 8px;
}

.trial-signup-form label {
  display: grid;
  gap: 8px;
  color: rgba(35, 35, 32, .78);
}

.trial-signup-form label span {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.trial-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.trial-field-grid input,
.trial-field-grid select,
.trial-submit-button {
  min-height: 62px;
  border-radius: 999px;
  font: inherit;
}

.trial-field-grid input,
.trial-field-grid select {
  width: 100%;
  padding: 0 24px;
  color: var(--ink);
  background: rgba(255, 255, 255, .76);
  border: 1px solid rgba(5, 5, 5, .18);
  outline: none;
  font-size: 18px;
}

.trial-field-grid select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(35, 35, 32, .78) 50%),
    linear-gradient(135deg, rgba(35, 35, 32, .78) 50%, transparent 50%);
  background-position:
    calc(100% - 24px) 28px,
    calc(100% - 17px) 28px;
  background-size: 7px 7px, 7px 7px;
  background-repeat: no-repeat;
}

.trial-field-grid input:focus,
.trial-field-grid select:focus {
  border-color: rgba(180, 71, 95, .58);
  box-shadow: 0 0 0 4px rgba(255, 143, 167, .2);
}

.trial-submit-button {
  justify-self: start;
  padding: 0 28px;
  color: #fff;
  background: var(--meadow-green);
  border: 0;
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 950;
  white-space: nowrap;
  transition: transform .22s cubic-bezier(.16, 1, .3, 1), background-color .22s ease;
}

.trial-submit-button:hover {
  transform: translateY(-1px);
  background: #f47d9a;
}

.trial-submit-button:active {
  transform: translateY(1px);
}

.trial-submit-button:disabled {
  cursor: default;
  opacity: .72;
  transform: none;
}

.trial-form-status {
  min-height: 24px;
  color: rgba(35, 35, 32, .66) !important;
  font-size: 15px !important;
}

.trial-signup-form.is-sent .trial-form-status {
  color: var(--meadow-green-deep) !important;
  font-weight: 800;
}

.trial-model-note {
  display: grid;
  align-content: end;
  gap: 18px;
  padding: clamp(24px, 3vw, 38px);
  background:
    radial-gradient(circle at 90% 0%, rgba(255, 143, 167, .24), transparent 17rem),
    rgba(255, 255, 255, .52);
}

.trial-model-note strong {
  display: block;
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(26px, 3vw, 44px);
  font-weight: 950;
  line-height: .95;
  letter-spacing: 0;
  text-transform: uppercase;
}

@media (max-width: 860px) {
  .trial-signup-layout {
    grid-template-columns: 1fr;
  }

  .trial-field-grid {
    grid-template-columns: 1fr;
  }

  .trial-submit-button {
    width: 100%;
    justify-self: stretch;
  }
}

@keyframes trial-card-drop {
  from {
    opacity: 0;
    transform: translate3d(0, -34px, 0) scale(.985);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

.demo-preview-section[data-feature-strip] {
  position: relative;
  min-height: 0;
  padding: clamp(48px, 5.4vw, 76px) 0 clamp(52px, 5.8vw, 82px);
  color: var(--cream);
  background: #050706;
  overflow: hidden;
  isolation: isolate;
}

.demo-preview-section[data-feature-strip] .demo-preview-sticky {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(18px, 2.6vw, 30px);
  min-height: 0;
  padding: 0;
}

.demo-preview-section[data-feature-strip] .demo-preview-bg-video {
  position: absolute;
  inset: clamp(180px, 15vw, 230px) 0 auto;
  z-index: 0;
  width: 100%;
  height: clamp(300px, 34vw, 460px);
  object-fit: cover;
  object-position: center;
  opacity: .72;
  filter: saturate(.9) contrast(1.08) brightness(.5);
  transform: none;
}

.demo-preview-section[data-feature-strip]::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5, 7, 6, .92), rgba(5, 7, 6, .72) 34%, rgba(5, 7, 6, .2) 72%, rgba(5, 7, 6, .78)),
    linear-gradient(90deg, rgba(5, 7, 6, .68), transparent 42%, rgba(5, 7, 6, .54));
  pointer-events: none;
}

.demo-preview-section[data-feature-strip] .demo-preview-copy {
  position: relative;
  z-index: 2;
  width: min(var(--side-safe-content-width), 1120px);
  margin: 0 auto;
  color: var(--cream);
}

.demo-preview-section[data-feature-strip] .demo-preview-copy h2 {
  max-width: 1080px;
  color: var(--cream);
  font-size: clamp(38px, 4.8vw, 68px);
  line-height: .95;
}

.demo-preview-section[data-feature-strip] .demo-preview-copy p {
  max-width: 720px;
  color: rgba(244, 242, 234, .72);
}

.demo-preview-section[data-feature-strip] .feature-scroll-lane {
  position: relative;
  z-index: 2;
  width: 100%;
  overflow: hidden;
}

.demo-preview-section[data-feature-strip] .demo-preview-grid {
  position: relative;
  display: flex;
  align-items: stretch;
  width: max-content;
  min-height: 0;
  gap: clamp(16px, 1.8vw, 26px);
  margin-left: max(28px, calc((100vw - min(var(--side-safe-content-width), 1120px)) / 2));
  padding-right: clamp(28px, 8vw, 120px);
  overflow: visible;
  perspective: none;
  cursor: default;
  touch-action: pan-y;
  user-select: auto;
  transform: none;
}

.demo-preview-section[data-feature-strip] .feature-card,
.demo-preview-section[data-feature-strip] .feature-card.is-active,
.demo-preview-section[data-feature-strip] .feature-card.is-prev,
.demo-preview-section[data-feature-strip] .feature-card.is-next,
.demo-preview-section[data-feature-strip] .feature-card.is-far-prev,
.demo-preview-section[data-feature-strip] .feature-card.is-far-next,
.demo-preview-section[data-feature-strip] .feature-card.is-recording-card {
  position: relative;
  left: auto;
  top: auto;
  z-index: 2;
  flex: 0 0 clamp(260px, 22vw, 330px);
  width: clamp(260px, 22vw, 330px);
  min-height: 0;
  display: grid;
  grid-template-rows: clamp(126px, 12vw, 168px) auto;
  color: var(--cream);
  background:
    linear-gradient(180deg, rgba(244, 242, 234, .08), rgba(244, 242, 234, .025)),
    rgba(13, 17, 12, .62);
  border: 1px solid rgba(244, 242, 234, .22);
  border-radius: 0;
  box-shadow: 0 24px 74px rgba(0, 0, 0, .3);
  opacity: 1;
  filter: none;
  pointer-events: auto;
  transform: none;
  transition: border-color .22s ease, background-color .22s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.demo-preview-section[data-feature-strip] .feature-card:hover {
  border-color: rgba(255, 143, 167, .44);
  background:
    linear-gradient(180deg, rgba(255, 143, 167, .1), rgba(244, 242, 234, .035)),
    rgba(13, 17, 12, .72);
  transform: none;
}

.demo-preview-section[data-feature-strip] .feature-card-media {
  min-height: 0;
  padding: 8px;
  overflow: hidden;
  border-bottom: 1px solid rgba(244, 242, 234, .18);
  background: rgba(0, 0, 0, .34);
}

.demo-preview-section[data-feature-strip] .feature-card-media img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: contain;
  filter: contrast(1.08) saturate(.95);
}

.demo-preview-section[data-feature-strip] .feature-card:hover .feature-card-media img {
  transform: none;
  filter: contrast(1.08) saturate(.95);
}

.demo-preview-section[data-feature-strip] .feature-card-copy {
  gap: 8px;
  padding: clamp(16px, 1.7vw, 22px);
}

.demo-preview-section[data-feature-strip] .demo-preview-grid span {
  color: var(--meadow-green);
}

.demo-preview-section[data-feature-strip] .demo-preview-grid strong {
  font-size: clamp(22px, 1.9vw, 30px);
}

.demo-preview-section[data-feature-strip] .demo-preview-grid small {
  color: rgba(244, 242, 234, .7);
  font-size: clamp(14px, 1.05vw, 16px);
}

.stories-section {
  padding: clamp(72px, 8vw, 112px) 20px;
}

.stories-heading {
  margin-bottom: clamp(26px, 4vw, 44px);
}

.stories-carousel {
  position: relative;
  width: min(var(--side-safe-content-width), 1240px);
  margin: 0 auto;
  padding: 0 clamp(46px, 5vw, 72px) 54px;
}

.stories-viewport {
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
}

.stories-viewport.is-dragging {
  cursor: grabbing;
}

.stories-track {
  display: flex;
  gap: clamp(16px, 2vw, 24px);
  will-change: transform;
  transition: transform .46s cubic-bezier(.16, 1, .3, 1);
}

.stories-viewport.is-dragging .stories-track {
  transition: none;
}

.story-card {
  flex: 0 0 min(420px, calc(100vw - 88px));
  grid-template-rows: 210px auto;
  min-height: 0;
  cursor: pointer;
}

.story-copy {
  gap: 14px;
}

.story-teaser {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.story-read-more {
  width: fit-content;
  min-height: 42px;
  padding: 0 18px;
  color: var(--meadow-green-deep);
  background: rgba(255, 143, 167, .13);
  border: 1px solid rgba(180, 71, 95, .2);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 850;
  transition: transform .2s cubic-bezier(.16, 1, .3, 1), background-color .2s ease;
}

.story-read-more:hover {
  transform: translateY(-1px);
  background: rgba(255, 143, 167, .2);
}

.story-nav {
  position: absolute;
  top: 42%;
  z-index: 4;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: rgba(255, 255, 255, .84);
  border: 1px solid rgba(5, 5, 5, .13);
  border-radius: 999px;
  box-shadow: 0 18px 46px rgba(22, 25, 21, .12);
  font-family: var(--sans);
  font-size: 34px;
  font-weight: 760;
  line-height: 1;
}

.story-nav:hover,
.story-nav:focus-visible {
  outline: none;
  background: #fff;
  border-color: rgba(180, 71, 95, .3);
}

.story-nav-prev {
  left: 0;
}

.story-nav-next {
  right: 0;
}

.story-dots {
  position: absolute;
  left: 50%;
  bottom: 0;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.story-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(5, 5, 5, .22);
}

.story-dots button[aria-current="true"] {
  width: 28px;
  background: var(--meadow-green);
}

.story-dialog,
.trial-modal {
  width: min(920px, calc(100vw - 32px));
  max-height: min(820px, calc(100dvh - 32px));
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  overflow: visible;
}

.story-dialog::backdrop,
.trial-modal::backdrop {
  background: rgba(5, 5, 5, .58);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.story-dialog[open] .story-dialog-layout,
.trial-modal[open] .trial-signup-card {
  animation: trial-card-drop 560ms cubic-bezier(.16, 1, .3, 1) both;
}

.story-dialog-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, .42fr) minmax(0, .58fr);
  gap: 0;
  max-height: min(820px, calc(100dvh - 32px));
  overflow: hidden;
  background: rgba(250, 248, 246, .96);
  border: 1px solid rgba(5, 5, 5, .13);
  border-radius: 0;
  box-shadow: 0 32px 100px rgba(0, 0, 0, .24);
}

.story-dialog-image {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.story-dialog-copy {
  display: grid;
  align-content: start;
  gap: 18px;
  max-height: min(820px, calc(100dvh - 32px));
  overflow: auto;
  padding: clamp(28px, 4vw, 52px);
}

.story-dialog-copy span {
  color: var(--meadow-green-deep);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 850;
}

.story-dialog-copy h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 950;
  line-height: .96;
}

.story-dialog-body {
  display: grid;
  gap: 16px;
  color: rgba(35, 35, 32, .76);
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.58;
}

.story-dialog-body p {
  margin: 0;
}

.story-dialog-actions {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.story-dialog-actions button,
.story-dialog-close,
.trial-modal-close {
  border: 1px solid rgba(5, 5, 5, .14);
  background: rgba(255, 255, 255, .72);
}

.story-dialog-actions button {
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 850;
}

.story-dialog-close,
.trial-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 5;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: rgba(5, 5, 5, .72);
  font-size: 26px;
  line-height: 1;
}

.download-section {
  padding: clamp(44px, 5vw, 78px) 20px;
}

.download-copy {
  margin-bottom: 0;
  text-align: center;
}

.download-copy h2,
#download-heading {
  max-width: none;
}

.download-copy p {
  margin-left: auto;
  margin-right: auto;
}

.trial-marquee {
  width: min(var(--side-safe-content-width), 1180px);
  margin: 0 auto;
  overflow: hidden;
  color: rgba(180, 71, 95, .62);
  font-family: var(--mono);
  font-size: clamp(13px, 1.5vw, 18px);
  font-weight: 850;
  white-space: nowrap;
  border-block: 1px solid rgba(180, 71, 95, .18);
}

.trial-marquee div {
  display: flex;
  width: max-content;
  gap: clamp(28px, 5vw, 70px);
  padding: 12px 0;
  animation: trial-marquee-left 18s linear infinite;
}

.trial-marquee-bottom {
  margin-top: clamp(34px, 4vw, 52px);
}

.trial-marquee-bottom div {
  animation-name: trial-marquee-right;
}

.trial-marquee + .download-copy {
  margin-top: clamp(34px, 4vw, 52px);
}

.trial-modal .trial-signup-card {
  position: relative;
  max-height: min(820px, calc(100dvh - 32px));
  overflow: auto;
  background: rgba(250, 248, 246, .97);
  border: 1px solid rgba(5, 5, 5, .13);
  box-shadow: 0 32px 100px rgba(0, 0, 0, .24);
}

body.has-open-dialog {
  overflow: hidden;
}

@keyframes trial-marquee-left {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes trial-marquee-right {
  from {
    transform: translate3d(-50%, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

@media (max-width: 760px) {
  .demo-preview-section[data-feature-strip] {
    padding: 64px 0 74px;
  }

  .demo-preview-section[data-feature-strip] .demo-preview-copy {
    width: calc(100vw - 28px);
  }

  .demo-preview-section[data-feature-strip] .demo-preview-grid {
    margin-left: 14px;
  }

  .demo-preview-section[data-feature-strip] .feature-card {
    flex-basis: min(310px, calc(100vw - 54px));
    width: min(310px, calc(100vw - 54px));
  }

  .stories-carousel {
    width: 100%;
    padding: 0 0 52px;
  }

  .story-nav {
    top: auto;
    bottom: 0;
  }

  .story-nav-prev {
    left: calc(50% - 96px);
  }

  .story-nav-next {
    right: calc(50% - 96px);
  }

  .story-dots {
    bottom: 16px;
  }

  .story-card {
    flex-basis: min(330px, calc(100vw - 36px));
  }

  .story-dialog-layout {
    grid-template-columns: 1fr;
  }

  .story-dialog-image {
    min-height: 220px;
    max-height: 280px;
  }

  .download-section {
    padding: 42px 14px;
  }
}

.faq-section {
  color: var(--cream);
  background:
    radial-gradient(circle at 82% 20%, rgba(255, 143, 167, .18), transparent 24rem),
    #060806;
}

.faq-heading {
  margin-bottom: clamp(28px, 4vw, 52px);
}

.faq-list {
  width: min(var(--side-safe-content-width), 980px);
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid rgba(244, 242, 234, .16);
  background: rgba(244, 242, 234, .055);
}

.faq-list summary {
  cursor: pointer;
  padding: 24px 26px;
  color: var(--cream);
  font-family: var(--sans);
  font-size: clamp(19px, 2vw, 26px);
  font-weight: 900;
  line-height: 1.2;
}

.faq-list p {
  padding: 0 26px 26px;
  color: rgba(244, 242, 234, .68);
}

.works-section {
  --works-top-mask: 18px;
  --works-bottom-mask: 18px;
  --works-content-width: var(--side-safe-content-width);
  timeline-scope: --work-list;
  position: relative;
  min-height: 100dvh;
  padding: 28px 20px 150px;
  background: var(--dark);
  color: var(--cream);
  overflow: visible;
}

.works-section::after {
  content: "";
  position: sticky;
  left: 0;
  width: 100%;
  display: block;
  pointer-events: none;
  z-index: 4;
}

.works-section::after {
  bottom: 0;
  height: var(--works-bottom-mask);
  margin-top: calc(var(--works-bottom-mask) * -1);
  background:
    linear-gradient(0deg, var(--dark) 0%, rgba(3, 3, 3, .82) 44%, transparent 100%);
}

.works-corners {
  position: relative;
  z-index: 6;
  min-height: 42px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: clamp(92px, 12vw, 150px);
  color: rgba(243, 234, 220, .44);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 950;
  line-height: 1.05;
  letter-spacing: 0;
  text-transform: uppercase;
}

.works-corners span:nth-child(2) {
  text-align: center;
}

.works-corners span:nth-child(3) {
  text-align: right;
}

.works-title-lock {
  display: contents;
}

#works-heading {
  position: sticky;
  top: 18px;
  z-index: 6;
  margin: 0 auto clamp(72px, 7vw, 112px);
  width: min(1400px, calc(100vw - 24px));
  font-family: var(--sans);
  font-size: clamp(40px, 12.4vw, 176px);
  line-height: .72;
  font-weight: 950;
  text-align: center;
  letter-spacing: 0;
  color: var(--cream);
  text-transform: uppercase;
  overflow: visible;
  transform-origin: center top;
}

#works-heading::after {
  /* content: "";
  position: absolute;
  left: -18vw;
  right: -18vw;
  bottom: -18px;
  height: var(--works-top-mask);
  background:
    linear-gradient(180deg, var(--dark) 0%, rgba(3, 3, 3, .78) 42%, transparent 100%);
  pointer-events: none; */
}

.work-taxonomy {
  position: relative;
  z-index: 5;
  width: var(--works-content-width);
  display: flex;
  flex-wrap: wrap;
  gap: 12px clamp(22px, 3vw, 48px);
  margin: -8px auto 0;
  color: rgba(243, 234, 220, .46);
  font-family: var(--mono);
  font-size: clamp(18px, 1.7vw, 27px);
  line-height: 1.05;
}

.work-taxonomy button {
  appearance: none;
  border: 0;
  padding: 6px 0;
  background: transparent;
  color: inherit;
  font: inherit;
  letter-spacing: .01em;
  text-align: left;
  white-space: nowrap;
  cursor: pointer;
  transition:
    color .22s ease,
    text-shadow .22s ease,
    transform .22s cubic-bezier(.16, 1, .3, 1);
}

.work-taxonomy button:hover,
.work-taxonomy button:focus-visible {
  color: #ff8fa7 !important;
  text-shadow: 0 0 18px rgba(255, 143, 167, .42), 0 0 2px rgba(255, 143, 167, .7);
  transform: translateY(-1px);
}

.work-taxonomy button:focus-visible {
  outline: 1px solid rgba(255, 143, 167, .72);
  outline-offset: 6px;
}

.work-stage {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .66fr) minmax(300px, .34fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: end;
  width: var(--works-content-width);
  margin: 0 auto clamp(62px, 9vw, 118px);
  overflow: clip;
}

.work-stage,
.about-media,
.interface-media {
  transform-style: preserve-3d;
}

.work-image {
  position: relative;
  min-height: min(64vw, 660px);
  padding: 0;
  border: 0;
  background: #0c0c0e;
  overflow: hidden;
  cursor: pointer;
}

.work-image img,
.work-image video {
  width: 100%;
  height: 100%;
  min-height: min(64vw, 660px);
  object-fit: contain;
  object-position: center;
  filter: contrast(1.04) saturate(.82);
  transform: none;
  transition: transform .65s cubic-bezier(.16, 1, .3, 1), filter .65s cubic-bezier(.16, 1, .3, 1);
}

.work-image:hover img,
.work-image:focus-visible img,
.work-image:hover video,
.work-image:focus-visible video {
  transform: none;
  filter: contrast(1.08) saturate(1);
}

.work-info {
  padding-bottom: 20px;
}

.work-info h3 {
  margin: 0 0 12px;
  color: var(--cream);
  font-family: var(--sans);
  font-size: clamp(28px, 3vw, 58px);
  line-height: .86;
  letter-spacing: 0;
  text-transform: uppercase;
}

.work-kind {
  margin: 0 0 48px;
  color: rgba(243, 234, 220, .52);
  font-size: clamp(18px, 1.5vw, 24px);
}

.work-info p:last-of-type {
  max-width: 520px;
  margin: 0 0 34px;
  color: rgba(243, 234, 220, .72);
  font-size: clamp(17px, 1.55vw, 23px);
  line-height: 1.35;
}

.text-link.invert {
  color: var(--cream);
}

.work-index {
  view-timeline-name: --work-list;
  view-timeline-axis: block;
  position: relative;
  width: var(--works-content-width);
  margin: clamp(24px, 3vw, 42px) auto 0;
  border-top: 0;
  isolation: isolate;
  z-index: 2;
}

.work-category-divider {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.7vw, 22px);
  min-height: clamp(72px, 7.2vw, 110px);
  padding: clamp(34px, 4.8vw, 64px) 0 12px;
  color: rgba(243, 234, 220, .52);
  font-family: var(--mono);
  font-size: clamp(18px, 1.55vw, 25px);
  line-height: 1;
  letter-spacing: .02em;
}

.work-category-divider::before {
  content: "";
  flex: 0 0 clamp(82px, 11vw, 156px);
  height: 1px;
  background: rgba(243, 234, 220, .12);
}

.work-category-divider::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(243, 234, 220, .18), rgba(243, 234, 220, 0));
}

.work-category-divider span {
  flex: 0 1 auto;
  max-width: min(100%, 42ch);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.work-category-divider.is-first {
  padding-top: 0;
}

.work-row {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  grid-template-columns: clamp(82px, 11vw, 156px) minmax(0, 1fr) minmax(190px, .32fr) 52px;
  gap: clamp(16px, 2.6vw, 34px);
  align-items: center;
  min-height: clamp(104px, 12vw, 156px);
  padding: 22px 0;
  border: 0;
  border-bottom: 1px solid rgba(243, 234, 220, .075);
  color: rgba(243, 234, 220, .54);
  background: transparent;
  text-align: left;
  overflow: clip;
  transition: color .22s ease, transform .22s ease, filter .42s ease, opacity .42s ease;
}

.work-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 6px;
  opacity: .62;
  background: rgba(243, 234, 220, .08);
  transform: translateZ(0);
  transition: opacity .22s ease, filter .28s ease;
}

.work-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: grayscale(.28) contrast(1.12);
  transform: none;
  transition: filter .28s ease, transform .42s cubic-bezier(.16, 1, .3, 1);
}

.work-row::after {
  content: "+";
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  justify-self: end;
  border: 1px solid rgba(243, 234, 220, .26);
  border-radius: 999px;
  color: rgba(243, 234, 220, .78);
  font-family: var(--sans);
  font-size: 28px;
  line-height: 1;
  transition: border-color .22s ease, background-color .22s ease, color .22s ease, transform .32s cubic-bezier(.16, 1, .3, 1);
}

.work-row.is-expanded::after {
  content: "-";
  color: var(--dark);
  background: var(--cream);
  border-color: var(--cream);
  transform: rotate(180deg);
}

.work-row-main {
  min-width: 0;
}

.work-row-category {
  display: block;
  margin-bottom: clamp(7px, .8vw, 12px);
  color: rgba(243, 234, 220, .4);
  font-family: var(--mono);
  font-size: clamp(10px, .86vw, 13px);
  line-height: 1;
}

.work-row-title {
  display: block;
  font-family: var(--sans);
  font-size: clamp(28px, 5.2vw, 76px);
  line-height: .8;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
  transform-origin: left center;
  overflow-wrap: anywhere;
}

.work-row-kind {
  font-size: 17px;
  line-height: 1.25;
}

.work-row:hover,
.work-row:focus-visible,
.work-row.is-active {
  color: var(--cream);
}

.work-row:hover .work-thumb,
.work-row:focus-visible .work-thumb,
.work-row.is-active .work-thumb {
  opacity: .96;
}

.work-row:hover .work-thumb img,
.work-row:focus-visible .work-thumb img,
.work-row.is-active .work-thumb img {
  filter: grayscale(0) contrast(1.08);
  transform: none;
}

.work-row:focus-visible {
  outline: 2px solid rgba(243, 234, 220, .72);
  outline-offset: 7px;
}

.work-row:active {
  transform: translateY(1px);
}

.work-detail {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    grid-template-rows .55s cubic-bezier(.16, 1, .3, 1),
    opacity .32s ease,
    visibility 0s linear .55s;
}

.work-detail.is-expanded {
  grid-template-rows: 1fr;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition:
    grid-template-rows .58s cubic-bezier(.16, 1, .3, 1),
    opacity .38s ease,
    visibility 0s;
}

.work-detail-inner {
  position: relative;
  min-height: 0;
  overflow: hidden;
  padding: 0;
  transform: translateY(18px);
  transition: padding .55s cubic-bezier(.16, 1, .3, 1), transform .55s cubic-bezier(.16, 1, .3, 1);
}

.work-detail.is-expanded .work-detail-inner {
  margin: 0 0 clamp(24px, 4vw, 54px);
  padding: clamp(34px, 7vh, 86px) 0 0;
  transform: translateY(0);
}

.work-detail-stage {
  width: 100%;
  margin: 0;
  transform-origin: center top;
}

.work-detail-stage .work-info {
  padding-bottom: 16px;
}

.work-detail-stage .work-feeling {
  margin-top: -14px;
  color: rgba(243, 234, 220, .6);
  font-size: clamp(15px, 1.15vw, 18px);
}

.work-detail-stage .work-feeling strong {
  display: block;
  margin-bottom: 6px;
  color: rgba(243, 234, 220, .42);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.work-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 28px;
}

.detail-link-button {
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid rgba(243, 234, 220, .42);
  border-radius: 999px;
  color: var(--dark);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: transform .22s ease, background-color .22s ease;
}

.detail-link-button:hover,
.detail-link-button:focus-visible {
  background: rgb(255 247 232);
}

.detail-link-button:active {
  transform: translateY(1px);
}

.interface-section {
  padding: clamp(56px, 5vw, 84px) 0 clamp(42px, 4vw, 68px);
  background: var(--paper);
  overflow: hidden;
}

.interface-inner {
  width: var(--side-safe-content-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .74fr) minmax(460px, .92fr);
  gap: clamp(32px, 5vw, 70px);
  align-items: center;
}

.interface-title {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
  margin: 0 auto -34px;
  color: rgba(5, 5, 5, .46);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
}

.interface-console,
.interface-media,
.interface-copy {
  width: min(100%, 720px);
  min-width: 0;
}

.interface-console {
  position: relative;
  justify-self: end;
  display: grid;
  align-content: center;
  gap: 14px;
  min-height: clamp(340px, 34vw, 480px);
  padding: clamp(24px, 3vw, 42px);
  color: rgba(255, 143, 167, .82);
  background:
    linear-gradient(180deg, rgba(255, 143, 167, .075), transparent 34%),
    #050505;
  font-family: var(--mono);
  font-size: clamp(13px, 1.25vw, 18px);
  line-height: 1.35;
  overflow: hidden;
}

.interface-console::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 143, 167, .14);
  pointer-events: none;
}

.interface-console span {
  position: relative;
  z-index: 1;
  display: block;
  overflow-wrap: anywhere;
}

.interface-console span:first-child {
  color: var(--cream);
  font-family: var(--sans);
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 950;
  line-height: .88;
  letter-spacing: 0;
  text-transform: uppercase;
}

.interface-media {
  position: relative;
  justify-self: end;
  min-height: clamp(340px, 34vw, 480px);
  overflow: hidden;
  background: #d4d4d0;
}

.interface-media img {
  width: 100%;
  height: 100%;
  min-height: clamp(340px, 34vw, 480px);
  object-fit: contain;
  object-position: center;
  filter: grayscale(1) saturate(0) contrast(1.12);
  transform: none;
}

.interface-copy h2 {
  margin: 0 0 28px;
  max-width: min(100%, 760px);
  font-family: var(--sans);
  font-size: clamp(40px, 3.9vw, 64px);
  line-height: .9;
  letter-spacing: 0;
  font-weight: 950;
  text-transform: uppercase;
  text-wrap: balance;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: manual;
}

.interface-copy p {
  max-width: 540px;
  margin: 0;
  color: #2a2a28;
  font-size: clamp(18px, 1.8vw, 25px);
  line-height: 1.32;
}

.skill-tree-section {
  position: relative;
  min-height: 100dvh;
  padding: clamp(86px, 10vw, 150px) 0 clamp(150px, 15vw, 230px);
  background: var(--dark);
  color: var(--cream);
  overflow: clip;
}

.skill-tree-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 58% 28%, rgba(255, 143, 167, .12), transparent 28rem),
    linear-gradient(180deg, rgba(232, 232, 230, .08), transparent 22%, transparent 76%, rgba(3, 3, 3, .9));
  pointer-events: none;
}

.skill-tree-heading {
  position: relative;
  z-index: 1;
  width: var(--side-safe-content-width);
  margin: 0 auto clamp(58px, 7vw, 106px);
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(22px, 4vw, 42px);
  align-items: start;
}

.skill-tree-heading h2 {
  width: auto;
  max-width: 100%;
  min-width: 0;
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(64px, 9.2vw, 150px);
  line-height: .82;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.skill-tree-heading h2 span {
  display: block;
}

.skill-tree-heading p {
  position: relative;
  z-index: 2;
  min-width: 0;
  max-width: 820px;
  justify-self: start;
  margin: 0 0 .4em;
  color: rgba(243, 234, 220, .68);
  font-size: clamp(17px, 1.45vw, 23px);
  line-height: 1.36;
}

.skill-tree-map {
  position: relative;
  z-index: 1;
  width: var(--side-safe-content-width);
  min-height: clamp(980px, 82vw, 1240px);
  margin: 0 auto;
  border-top: 1px solid rgba(243, 234, 220, .22);
  border-bottom: 0;
  overflow: visible;
}

.skill-tree-canvas {
  position: absolute;
  inset: -8% -7% -16%;
  z-index: 0;
  width: 114%;
  height: 126%;
  opacity: .9;
  pointer-events: none;
}

.skill-tree-map::before,
.skill-tree-map::after,
.skill-axis {
  content: "";
  position: absolute;
  background: rgba(243, 234, 220, .22);
  pointer-events: none;
}

.skill-tree-map::before {
  left: 50%;
  top: 8%;
  bottom: 10%;
  width: 1px;
}

.skill-tree-map::after {
  left: 14%;
  right: 14%;
  top: 50%;
  height: 1px;
}

.skill-tree-map.is-three-ready::before,
.skill-tree-map.is-three-ready::after,
.skill-tree-map.is-three-ready .skill-axis,
.skill-tree-map.is-three-ready .skill-bottom-rule {
  opacity: .32;
}

.skill-bottom-rule {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -76px;
  height: 1px;
  background: rgba(243, 234, 220, .18);
  pointer-events: none;
}

.skill-axis-main {
  left: 25%;
  right: 25%;
  top: 28%;
  height: 1px;
  transform: rotate(-14deg);
  transform-origin: center;
}

.skill-node {
  --skill-node-transform: none;
  position: absolute;
  z-index: 2;
  width: min(460px, 35vw);
  min-height: 176px;
  padding: 0 0 22px 24px;
  color: rgba(243, 234, 220, .72);
  transform: var(--skill-node-transform);
}

.skill-node::before {
  content: "";
  position: absolute;
  left: 0;
  top: .32em;
  width: 12px;
  height: 12px;
  background: var(--cream);
  box-shadow: 0 0 0 12px rgba(243, 234, 220, .06);
}

.skill-node::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 22px;
  bottom: 0;
  width: 1px;
  background: rgba(243, 234, 220, .2);
}

.skill-node-kicker {
  display: block;
  margin-bottom: 12px;
  color: rgba(255, 143, 167, .76);
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1;
}

.skill-node h3 {
  margin: 0 0 14px;
  color: var(--cream);
  font-family: var(--sans);
  font-size: clamp(30px, 2.85vw, 52px);
  line-height: .82;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.skill-node p {
  max-width: 30ch;
  margin: 0;
  font-size: clamp(15px, 1.16vw, 18px);
  line-height: 1.36;
}

.skill-node-core {
  left: 50%;
  top: 42%;
  width: min(340px, 30vw);
  --skill-node-transform: translate(-50%, -50%);
}

.skill-node-core::before {
  width: 18px;
  height: 18px;
  background: #ff8fa7;
  box-shadow: 0 0 0 18px rgba(255, 143, 167, .08);
}

.skill-node-llm {
  left: 4%;
  top: 7%;
}

.skill-node-wm {
  right: 4%;
  top: 9%;
}

.skill-node-thinking {
  left: 3%;
  bottom: 15%;
}

.skill-node-go {
  right: 4%;
  bottom: 16%;
}

.skill-node-hmi {
  left: 50%;
  bottom: 3%;
  --skill-node-transform: translateX(-50%);
}

.site-footer {
  position: relative;
  isolation: isolate;
  min-height: 68dvh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: 1fr auto auto;
  gap: clamp(20px, 4vw, 48px);
  align-items: end;
  padding: 0 24px clamp(56px, 6vw, 82px);
  background: var(--dark);
  color: var(--cream);
  overflow: visible;
}

.site-footer::before,
.site-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.site-footer::before {
  z-index: 0;
  background: url("../assets/meadow-code-hero-footer-frame.jpg") center / cover no-repeat;
  filter: saturate(.78) contrast(1.08);
}

.site-footer::after {
  z-index: 1;
  background: rgba(0, 0, 0, .9);
}

.footer-wordmark {
  position: absolute;
  inset: 0 0 auto;
  z-index: 2;
  display: grid;
  color: rgba(243, 234, 220, .08);
  font-family: var(--sans);
  font-size: clamp(86px, 16vw, 236px);
  font-weight: 950;
  line-height: .72;
  letter-spacing: 0;
  text-transform: uppercase;
  filter: url("#hero-displace");
  pointer-events: none;
}

.footer-wordmark span {
  grid-area: 1 / 1;
  transform: scaleX(1.06);
}

.footer-wordmark span:last-child {
  color: rgba(243, 234, 220, .045);
  transform: translateY(.26em) scaleX(.96);
}

.brand-universal .footer-wordmark {
  font-size: clamp(66px, 12vw, 178px);
}

.footer-copy {
  position: relative;
  z-index: 2;
  grid-column: 1;
  grid-row: 2;
}

.footer-model {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  isolation: isolate;
  overflow: visible;
}

.product-page .footer-model {
  z-index: 2;
  display: block;
  pointer-events: none;
}

.product-page .site-footer {
  min-height: 84dvh;
  overflow: hidden;
}

.product-page .site-footer::after {
  background:
    radial-gradient(circle at 58% 42%, rgba(255, 143, 167, .18), transparent 31rem),
    linear-gradient(180deg, rgba(0, 0, 0, .72), rgba(0, 0, 0, .9) 72%);
}

.product-page .footer-wordmark {
  z-index: 3;
}

.product-page .footer-copy,
.product-page .footer-cta,
.product-page .footer-link {
  z-index: 4;
}

.footer-model::before {
  content: none;
}

.footer-model-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0;
  transform: translate3d(0, -16vh, 0) scale(.88);
  transition:
    opacity .72s cubic-bezier(.16, 1, .3, 1),
    transform .72s cubic-bezier(.16, 1, .3, 1);
}

.product-page .footer-model-canvas {
  filter: drop-shadow(0 34px 64px rgba(0, 0, 0, .32));
  transform: none;
  pointer-events: none;
}

.footer-model.is-model-ready .footer-model-canvas {
  opacity: 1;
  transform: translate3d(0, -16vh, 0) scale(.88);
}

.product-page .footer-model.is-model-ready .footer-model-canvas {
  opacity: .9;
  transform: none;
}

@media (max-width: 700px) {
  .product-page .site-footer {
    min-height: 96dvh;
  }

  .product-page .footer-model-canvas {
    transform: none;
  }

  .product-page .footer-model.is-model-ready .footer-model-canvas {
    opacity: .74;
    transform: none;
  }
}

.footer-copy span,
.footer-copy strong,
.site-footer a {
  margin: 0;
  font-family: var(--sans);
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-copy span {
  display: block;
  font-size: 42px;
  line-height: .8;
}

.footer-copy strong {
  display: block;
  font-size: 14px;
  color: rgba(243, 234, 220, .6);
}

.site-footer a {
  color: var(--cream);
  text-decoration: none;
  font-size: 20px;
}

.footer-cta {
  position: relative;
  z-index: 2;
  grid-column: 2;
  grid-row: 2;
  min-height: 62px;
  display: inline-grid;
  place-items: center;
  padding: 0 26px;
  border: 1px solid currentColor;
  border-radius: 999px;
  transition: color .22s ease, background-color .22s ease, transform .22s ease;
}

.footer-cta:hover,
.footer-cta:focus-visible {
  color: var(--dark);
  background: var(--cream);
  transform: translateY(-2px);
}

.footer-link {
  position: relative;
  z-index: 2;
  grid-column: 1 / -1;
  grid-row: 3;
  justify-self: end;
  color: rgba(243, 234, 220, .68);
  font-family: var(--body);
  font-size: clamp(18px, 3vw, 40px);
  letter-spacing: 0;
  text-transform: none;
}

.footer-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: currentColor;
  transform: scaleX(.08);
  transform-origin: right center;
  transition: transform .36s cubic-bezier(.16, 1, .3, 1);
}

.footer-link:hover::after,
.footer-link:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.work-dialog {
  width: min(1180px, calc(100% - 36px));
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--cream);
}

.work-dialog::backdrop {
  background: rgba(0, 0, 0, .62);
  backdrop-filter: blur(20px) saturate(120%);
  -webkit-backdrop-filter: blur(20px) saturate(120%);
}

.dialog-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .66fr) minmax(300px, .34fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: end;
  padding: clamp(16px, 2vw, 28px);
  background: #050505;
}

.dialog-media {
  width: 100%;
  min-width: 0;
  background: #050505;
}

.dialog-media img,
.dialog-media video {
  width: 100%;
  height: min(70dvh, 700px);
  object-fit: contain;
  object-position: center;
  background: #050505;
}

.dialog-copy h2 {
  margin: 0 0 16px;
  color: var(--cream);
  font-family: var(--sans);
  font-size: clamp(42px, 6vw, 108px);
  line-height: .78;
  letter-spacing: 0;
  text-transform: uppercase;
}

.dialog-copy p {
  color: rgba(243, 234, 220, .72);
  font-size: 18px;
  line-height: 1.4;
}

.dialog-copy p:first-child {
  color: rgba(243, 234, 220, .48);
}

.dialog-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(243, 234, 220, .42);
  border-radius: 999px;
  color: var(--cream);
  background: rgba(3, 3, 3, .68);
}

@media (prefers-reduced-motion: no-preference) {
  .hero-pin::after {
    animation: cloud-drift 18s cubic-bezier(.45, 0, .25, 1) infinite alternate;
    will-change: transform;
  }

  body.is-ready .hero-wordmark {
    animation: wordmark-enter 360ms cubic-bezier(.16, 1, .3, 1) both;
  }

  body.is-ready .hero-wordmark .hero-letter {
    animation: hero-letter-drop 820ms cubic-bezier(.16, 1, .3, 1) both;
    animation-delay: calc(150ms + (var(--i) * 70ms));
  }

  body.is-ready .corner-center {
    animation: corner-enter 680ms cubic-bezier(.16, 1, .3, 1) 340ms both;
  }

  body.is-ready .hero-meta {
    animation: meta-enter 760ms cubic-bezier(.16, 1, .3, 1) 520ms both;
  }

  .reveal {
    opacity: 0;
    transform: translate3d(0, 34px, 0);
    transition:
      opacity .78s cubic-bezier(.16, 1, .3, 1) var(--reveal-delay, 0ms),
      transform .78s cubic-bezier(.16, 1, .3, 1) var(--reveal-delay, 0ms);
  }

  .reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  .work-detail-stage.reveal {
    opacity: 0;
    filter: blur(22px) saturate(.72);
    transform: translate3d(0, 58px, 0) scale(.982);
  }

  .work-detail-stage.reveal.is-visible {
    opacity: 1;
    filter: blur(0) saturate(1);
    transform: translate3d(0, 0, 0) scale(1);
  }

  .skill-node.reveal {
    opacity: 0;
    filter: blur(14px) saturate(.76);
    transform: var(--skill-node-transform);
  }

  .skill-node.reveal.is-visible {
    opacity: 1;
    filter: blur(0) saturate(1);
    transform: var(--skill-node-transform);
  }

}

@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    #works-heading {
      animation: works-title-release linear both;
      animation-timeline: --work-list;
      animation-range: entry 78% entry 96%;
    }

    .about-media img,
    .interface-media img {
      animation: image-parallax linear both;
      animation-timeline: view();
      animation-range: entry -20% exit 120%;
    }

    .work-image img,
    .work-image video {
      animation: work-image-parallax linear both;
      animation-timeline: view();
      animation-range: entry -10% exit 110%;
    }

    .work-detail.is-expanded .work-detail-stage {
      animation: work-stage-focus linear both;
      animation-timeline: view();
      animation-range: entry 0% entry 75%;
    }

    .work-row {
      animation: work-row-depth linear both;
      animation-timeline: view();
      animation-range: entry 0% exit 100%;
    }

    .skill-node {
      animation: skill-node-focus linear both;
      animation-timeline: view();
      animation-range: entry 0% entry 72%;
    }

    .about-repeat {
      animation: repeat-parallax linear both;
      animation-timeline: view();
      animation-range: entry -10% exit 110%;
    }

    .footer-wordmark {
      animation: footer-word-distort linear both;
      animation-timeline: view();
      animation-range: entry 0% exit 90%;
    }
  }
}

@keyframes hero-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes page-enter {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes hero-letter-drop {
  from {
    opacity: 0;
    filter: blur(10px);
    transform: translate3d(0, -72px, 0);
  }

  72% {
    opacity: 1;
    filter: blur(1px);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes loader-fill {
  0% {
    transform: scaleX(0);
  }

  72% {
    transform: scaleX(.94);
  }

  100% {
    transform: scaleX(1);
  }
}

@keyframes loader-dot {
  0%,
  62%,
  100% {
    opacity: .25;
    transform: translate3d(0, 0, 0);
  }

  24% {
    opacity: 1;
    transform: translate3d(0, -2px, 0);
  }
}

@keyframes loader-word-enter {
  from {
    opacity: 0;
    filter: blur(8px);
    transform: translate3d(0, 18px, 0) scale(.992);
  }

  62% {
    opacity: 1;
    filter: blur(1px);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes loader-exit {
  from {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0);
  }

  to {
    opacity: 0;
    filter: blur(8px);
    transform: translate3d(0, -18px, 0);
  }
}

@keyframes corner-enter {
  from {
    opacity: 0;
    filter: blur(8px);
    clip-path: inset(0 0 100% 0);
  }

  to {
    opacity: 1;
    filter: blur(0);
    clip-path: inset(0);
  }
}

@keyframes meta-enter {
  from {
    opacity: 0;
    filter: blur(10px);
    clip-path: inset(48% 0 48% 0);
  }

  to {
    opacity: 1;
    filter: blur(0);
    clip-path: inset(0);
  }
}

@keyframes cloud-drift {
  from {
    transform: translate3d(-2vw, -1vh, 0) scale(.96) rotate(-4deg);
  }

  to {
    transform: translate3d(4vw, 3vh, 0) scale(1.08) rotate(8deg);
  }
}

@keyframes wordmark-enter {
  from {
    opacity: 0;
    transform: translate3d(0, 42px, 0) scale(.985);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 1.5vh, 0) scale(1);
  }
}

@keyframes wordmark-rgb-dispersion {
  0% {
    filter: none;
    text-shadow: none;
    transform: translate3d(0, 0, 0);
  }

  8% {
    filter: blur(.2px);
    text-shadow:
      -13px 0 0 rgba(255, 61, 96, .72),
      12px 0 0 rgba(0, 119, 255, .62),
      0 5px 0 rgba(255, 176, 58, .32);
    transform: translate3d(.8px, 0, 0);
  }

  20% {
    filter: blur(.35px);
    text-shadow:
      9px 0 0 rgba(255, 61, 96, .52),
      -11px 0 0 rgba(0, 119, 255, .48),
      0 -4px 0 rgba(255, 143, 167, .38);
    transform: translate3d(-.6px, 0, 0);
  }

  42% {
    filter: blur(.15px);
    text-shadow:
      -5px 0 0 rgba(255, 61, 96, .34),
      5px 0 0 rgba(0, 119, 255, .28);
  }

  72% {
    filter: none;
    text-shadow:
      -2px 0 0 rgba(255, 61, 96, .16),
      2px 0 0 rgba(0, 119, 255, .14);
    transform: translate3d(0, 0, 0);
  }

  100% {
    filter: none;
    text-shadow: none;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes image-parallax {
  from {
    translate: 0 0;
  }

  to {
    translate: 0 0;
  }
}

@keyframes work-image-parallax {
  from {
    translate: 0 0;
  }

  to {
    translate: 0 0;
  }
}

@keyframes works-title-release {
  from {
    opacity: 1;
    transform: scaleY(1) translateY(0);
  }

  48% {
    opacity: 1;
  }

  to {
    opacity: .18;
    transform: scaleY(.74) translateY(-24vh);
  }
}

@keyframes corner-side-rise {
  from {
    bottom: var(--corner-home-bottom);
  }

  to {
    bottom: calc(100dvh - var(--corner-stop-top) - var(--corner-rotated-height));
  }
}

@keyframes work-stage-focus {
  from {
    opacity: .28;
    filter: blur(22px) saturate(.72);
    transform: translate3d(0, 58px, 0) scale(.982);
  }

  to {
    opacity: 1;
    filter: blur(0) saturate(1);
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes work-row-depth {
  0% {
    opacity: .2;
    filter: blur(10px) saturate(.76);
  }

  22% {
    opacity: .78;
    filter: blur(3px) saturate(.9);
  }

  42%,
  82% {
    opacity: 1;
    filter: blur(0) saturate(1);
  }

  100% {
    opacity: .42;
    filter: blur(0) saturate(.9);
  }
}

@keyframes skill-node-focus {
  from {
    opacity: .24;
    filter: blur(14px) saturate(.76);
  }

  to {
    opacity: 1;
    filter: blur(0) saturate(1);
  }
}

@keyframes repeat-parallax {
  from {
    transform: translate3d(-4vw, 0, 0);
  }

  to {
    transform: translate3d(5vw, 0, 0);
  }
}

@keyframes footer-word-distort {
  from {
    opacity: .7;
    transform: translateY(16vh) scaleY(1.45);
  }

  55% {
    opacity: 1;
    transform: translateY(0) scaleY(1);
  }

  to {
    opacity: .54;
    transform: translateY(-12vh) scaleY(.68);
  }
}

@keyframes pixel-breathe {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
  }

  50% {
    transform: scale(1.035) rotate(1deg);
  }
}

@keyframes pixel-shake {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  25% {
    transform: translate3d(-3px, 2px, 0);
  }

  75% {
    transform: translate3d(3px, -2px, 0);
  }
}

@media (max-width: 1500px) {
  .skill-tree-heading {
    grid-template-columns: 1fr;
    gap: clamp(22px, 4vw, 38px);
    align-items: start;
  }

  .skill-tree-heading h2 {
    width: auto;
    font-size: clamp(58px, 10vw, 132px);
  }

  .skill-tree-heading p {
    justify-self: start;
    max-width: 760px;
  }
}

@media (max-width: 980px) {
  .hero-wordmark {
    width: min(100%, calc(100vw - 48px));
    font-size: clamp(44px, 11vw, 104px);
  }

  .hero-meta {
    top: calc(50% + 18vh);
    gap: 22px;
  }

  .about-layout,
  .work-stage,
  .work-detail-inner,
  .interface-inner,
  .harness-inner,
  .harness-main,
  .dialog-inner {
    grid-template-columns: 1fr;
  }

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

  .task-matrix {
    grid-template-columns: 1fr;
  }

  .harness-copy {
    position: relative;
    top: auto;
  }

  .about-media,
  .interface-media,
  .interface-copy {
    justify-self: start;
  }

  .skill-tree-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .skill-tree-map {
    min-height: auto;
    display: grid;
    gap: 28px;
    padding: 32px 0;
  }

  .skill-tree-map::before,
  .skill-tree-map::after,
  .skill-axis,
  .skill-bottom-rule {
    display: none;
  }

  .skill-tree-canvas {
    display: none;
  }

  .skill-node,
  .skill-node-core,
  .skill-node-llm,
  .skill-node-wm,
  .skill-node-thinking,
  .skill-node-go,
  .skill-node-hmi {
    --skill-node-transform: none;
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: min(100%, 720px);
    min-height: auto;
    transform: none;
  }

  .work-info {
    padding-bottom: 0;
  }
}

@media (max-width: 700px) {
  :root {
    --side-safe-content-width: min(100%, calc(100vw - 28px));
  }

  .hero-pin {
    padding: 86px 14px 118px;
  }

  .hero-pin.has-plush-models .hero-plush-canvas {
    opacity: 1;
  }

  .works-section {
    --works-content-width: var(--side-safe-content-width);
  }

  .corner {
    top: 18px;
    font-size: 9px;
  }

  .corner-left,
  .corner-right {
    top: 18px;
    bottom: auto;
    max-width: 29vw;
    white-space: normal;
  }

  .corner-left {
    left: 14px;
  }

  .corner-right {
    right: 14px;
  }

  .corner-center {
    display: block;
    top: 18px;
    max-width: 34vw;
    white-space: normal;
  }

  .hero-wordmark {
    width: 90vw;
    max-width: 90vw;
    font-size: clamp(72px, 21.5vw, 96px);
    letter-spacing: 0;
  }

  .hero-meta {
    top: auto;
    bottom: 122px;
    grid-template-columns: 1fr;
    gap: 6px;
    text-align: center;
    font-size: 20px;
  }

  .about-strip,
  .diffusion-primer-section,
  .harness-section,
  .demo-proof-section,
  .works-section,
  .interface-section,
  .skill-tree-section {
    padding-left: 14px;
    padding-right: 14px;
  }

  .about-layout {
    min-height: auto;
  }

  .about-object-video {
    height: min(58dvh, 480px);
    transform: translate(24%, -52%);
  }

  .about-object-video.is-video-ready.is-active {
    opacity: .28;
  }

  .about-object-video.is-alpha-video.is-video-ready.is-active {
    opacity: .38;
  }

  .about-copy h2 {
    font-size: clamp(54px, 18vw, 92px);
  }

  .diffusion-primer-inner h2,
  .harness-copy h2,
  .demo-proof-heading h2 {
    max-width: min(100%, 720px);
    font-size: clamp(42px, 13vw, 84px);
  }

  .diffusion-card-grid,
  .demo-grid {
    grid-template-columns: 1fr;
  }

  .demo-card-wide {
    grid-column: auto;
  }

  .demo-card-wide .demo-media,
  .demo-media {
    aspect-ratio: 4 / 3;
  }

  .harness-terminal {
    font-size: 12px;
  }

  .interface-copy h2 {
    max-width: min(100%, 720px);
    font-size: clamp(38px, 11vw, 70px);
  }

  .works-corners {
    grid-template-columns: 1fr 1fr;
    margin-bottom: 74px;
  }

  .works-corners span:nth-child(2) {
    display: none;
  }

  #works-heading {
    margin-bottom: 70px;
    width: min(680px, calc(100vw - 28px));
    font-size: clamp(40px, 12.4vw, 84px);
  }

  .work-image,
  .work-image img,
  .work-image video {
    min-height: 390px;
  }

  .work-category-divider {
    gap: 10px;
    min-height: 58px;
    padding: 30px 0 8px;
    font-size: 16px;
  }

  .work-category-divider::before {
    flex-basis: 74px;
  }

  .work-category-divider span {
    max-width: calc(100% - 118px);
  }

  .work-row {
    grid-template-columns: 74px minmax(0, 1fr) 46px;
    gap: 12px;
    min-height: 108px;
    padding: 18px 0;
  }

  .work-thumb {
    grid-column: 1;
    grid-row: 1 / span 2;
    align-self: center;
    border-radius: 5px;
  }

  .work-row-title {
    font-size: clamp(31px, 10vw, 62px);
  }

  .work-row-main {
    grid-column: 2;
    grid-row: 1;
  }

  .work-row-kind {
    grid-column: 2;
    grid-row: 2;
    padding-right: 0;
  }

  .work-row::after {
    grid-column: 3;
    grid-row: 1 / span 2;
    align-self: center;
    width: 42px;
    height: 42px;
  }

  .work-detail.is-expanded .work-detail-inner {
    padding: 74px 0 0;
  }

  .interface-title,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .interface-media,
  .interface-media img {
    min-height: 320px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(220px, 1fr) auto auto auto;
    gap: 18px;
    min-height: 92dvh;
    padding-top: 0;
  }

  .footer-copy,
  .footer-cta,
  .footer-link {
    grid-column: 1;
  }

  .footer-model {
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .footer-copy {
    grid-row: 2;
  }

  .footer-cta {
    grid-row: 3;
    justify-self: start;
  }

  .footer-link {
    grid-row: 4;
    justify-self: start;
  }
}

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

  body.is-loading {
    overflow: auto;
  }

  body.is-loading main {
    opacity: 1;
    filter: none;
    transform: none;
  }

  .site-loader {
    display: none;
  }

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

@media (max-width: 1180px) {
  .demo-preview-grid,
  .benchmark-layout,
  .install-layout {
    grid-template-columns: 1fr;
  }

  .product-page .plan-inner {
    grid-template-columns: 1fr;
  }

  .product-page .plan-copy {
    position: relative;
    top: auto;
  }

  .product-page .plan-copy h2 {
    max-width: 11ch;
  }
}

@media (max-width: 980px) {
  .product-page .hero-sales-card {
    bottom: clamp(52px, 8vh, 84px);
  }

  .product-page .hero-meta {
    top: calc(50% + 15vh);
  }

  .product-page .plan-cards {
    grid-template-columns: 1fr;
  }

  .benchmark-stats {
    grid-template-columns: 1fr;
  }

  .benchmark-stats article:nth-child(n) {
    border-right: 0;
    border-bottom: 1px solid rgba(244, 242, 234, .16);
  }

  .benchmark-stats article:last-child {
    border-bottom: 0;
  }

  .product-page .plan-cards article {
    min-height: auto;
  }
}

@media (max-width: 700px) {
  .product-page .hero-pin {
    padding-top: 30px;
    padding-bottom: 168px;
  }

  .product-page .hero-meta {
    display: none;
  }

  .product-page .hero-wordmark {
    margin-top: -10vh;
    width: 90vw;
    max-width: 90vw;
    font-size: clamp(62px, 17.5vw, 74px);
    line-height: .9;
  }

  .product-page .hero-sales-card {
    bottom: 36px;
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .product-page .hero-sales-card strong {
    font-size: clamp(19px, 6vw, 27px);
  }

  .product-page .hero-sales-card a {
    width: 100%;
  }

  .product-page .about-copy h2 {
    font-size: clamp(42px, 13vw, 72px);
  }

  .capability-section,
  .demo-preview-section,
  .benchmark-section,
  .download-section,
  .faq-section {
    padding-left: 14px;
    padding-right: 14px;
  }

  .work-plush-canvas {
    display: block;
    top: clamp(280px, 78vw, 360px);
    right: -42vw;
    width: 112vw;
    height: clamp(1080px, 360vw, 1480px);
    min-height: 0;
    opacity: 0;
    filter: drop-shadow(0 24px 38px rgba(28, 33, 26, .1));
  }

  .capability-section.has-work-plush-models .work-plush-canvas {
    opacity: .5;
  }

  .capability-intro h2,
  .demo-preview-copy h2,
  .benchmark-heading h2,
  .download-copy h2,
  .faq-heading h2 {
    font-size: clamp(40px, 12vw, 68px);
  }

  .capability-intro p,
  .demo-preview-copy p,
  .benchmark-heading p,
  .download-copy p {
    font-size: 17px;
  }

  .scenario-card,
  .feature-card,
  .benchmark-visual {
    min-height: auto;
  }

  .scenario-grid {
    width: calc(100vw - 28px);
    gap: 30px;
  }

  .scenario-card,
  .scenario-card:nth-child(odd),
  .scenario-card:nth-child(even) {
    width: min(86vw, 342px);
    align-self: flex-start;
    margin-top: 0;
  }

  .scenario-card:nth-child(even),
  .scenario-card:nth-child(4) {
    align-self: flex-end;
    margin-top: clamp(-42px, -8vw, -24px);
  }

  .scenario-card:nth-child(3) {
    align-self: flex-start;
    margin-top: clamp(-30px, -6vw, -18px);
  }

  .feature-carousel {
    --feature-side-offset: clamp(210px, 68vw, 280px);
    --feature-far-offset: clamp(360px, 112vw, 470px);
    width: 100%;
    min-height: 560px;
  }

  .feature-carousel::before,
  .feature-carousel::after {
    width: 34px;
  }

  .demo-preview-grid {
    min-height: 560px;
  }

  .feature-card {
    width: min(360px, calc(100vw - 56px));
    min-height: 500px;
  }

  .feature-card-media,
  .feature-card-media img {
    min-height: 190px;
  }

  .feature-card-copy {
    padding: 22px;
  }

  .feature-card.is-active {
    transform: translateX(-50%) scale(1);
  }

  .feature-card.is-active:hover {
    transform: translateX(-50%) scale(1);
  }

  .feature-carousel-button {
    width: 44px;
    height: 44px;
  }

  .feature-carousel-button-prev {
    left: 4px;
  }

  .feature-carousel-button-next {
    right: 4px;
  }

  .scenario-media,
  .scenario-media img {
    min-height: 220px;
  }

  .scenario-copy,
  .benchmark-stats article {
    padding: 22px;
  }

  .benchmark-stats strong {
    white-space: normal;
  }

  .install-steps li {
    padding: 22px 18px 22px 64px;
  }

  .faq-list summary {
    padding: 20px;
  }

  .faq-list p {
    padding: 0 20px 22px;
  }

  .product-page .plan-section {
    padding-left: 14px;
    padding-right: 14px;
  }

  .product-page .plan-copy h2 {
    font-size: clamp(40px, 12vw, 70px);
  }

  .product-page .plan-cards strong {
    font-size: clamp(40px, 12vw, 64px);
  }

  .product-page .plan-badge {
    position: static;
    justify-self: start;
    margin-bottom: 18px;
  }
}

/* Meadow launch page final override */
.capability-intro h2 {
  max-width: 1120px;
}

.scenario-grid {
  width: min(var(--side-safe-content-width), 1180px);
  gap: clamp(38px, 5vw, 72px);
}

.scenario-card {
  width: min(496px, 40vw);
}

.scenario-card:nth-child(even),
.scenario-card:nth-child(3),
.scenario-card:nth-child(4) {
  margin-top: 0;
}

.scenario-card:nth-child(odd) {
  align-self: flex-start;
}

.scenario-card:nth-child(even) {
  align-self: flex-end;
}

.scenario-media,
.scenario-media img {
  min-height: 208px;
}

.demo-preview-section[data-feature-pan] {
  --feature-pane-height: 100dvh;
  --feature-pan-height: calc(var(--feature-pane-height) + 120vh);
  position: relative;
  background: #050706 url("../assets/meadow-feature-scroll-bg-last-frame.jpg") center / cover no-repeat;
  overflow: clip;
}

.demo-preview-section[data-feature-pan] .demo-preview-copy {
  margin-left: clamp(54px, 7vw, 118px);
}

.demo-preview-section[data-feature-pan] .demo-preview-copy h2 {
  max-width: 980px;
}

.demo-preview-section[data-feature-pan] .demo-preview-sticky {
  height: var(--feature-pane-height);
  min-height: 760px;
  grid-template-rows: auto auto minmax(0, 1fr);
  row-gap: clamp(12px, 1.5vh, 20px);
  padding: clamp(30px, 3.5vh, 48px) 0 0;
  background: #050706 url("../assets/meadow-feature-scroll-bg-last-frame.jpg") center / cover no-repeat;
}

.demo-preview-section[data-feature-pan] .demo-preview-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: none;
}

.demo-preview-section[data-feature-pan] .demo-preview-sticky::before {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .66), rgba(0, 0, 0, .2) 42%, rgba(0, 0, 0, .55)),
    linear-gradient(180deg, rgba(0, 0, 0, .2), rgba(0, 0, 0, .12) 50%, rgba(0, 0, 0, .5));
}

.demo-preview-section[data-feature-pan] .feature-scroll-lane {
  min-height: clamp(305px, 36vh, 420px);
}

.demo-preview-section[data-feature-pan] .benchmark-section-inline {
  position: relative;
  z-index: 2;
  width: min(calc(100vw - 224px), 1040px);
  box-sizing: border-box;
  justify-self: center;
  margin: clamp(6px, 1vh, 12px) 0 0;
  padding: clamp(16px, 2.1vh, 26px) 0 clamp(18px, 2.4vh, 30px);
  color: var(--cream);
  background: transparent;
  overflow: hidden;
}

.demo-preview-section[data-feature-pan] .benchmark-section-inline::before {
  content: "";
  position: absolute;
  inset: 0 -10vw -1px;
  z-index: -1;
  background: none;
  pointer-events: none;
}

.demo-preview-section[data-feature-pan] .benchmark-heading {
  width: min(100%, 1120px);
  margin: 0 0 clamp(12px, 1.8vh, 20px);
}

.demo-preview-section[data-feature-pan] .benchmark-heading h2 {
  max-width: 820px;
  margin: 0;
  color: var(--cream);
  font-size: clamp(42px, 5vw, 76px);
  line-height: .92;
}

.demo-preview-section[data-feature-pan] .benchmark-heading p {
  max-width: 820px;
  margin: clamp(8px, 1.1vh, 14px) 0 0;
  color: rgba(244, 242, 234, .72);
  font-size: clamp(17px, 1.7vw, 23px);
  line-height: 1.38;
}

.demo-preview-section[data-feature-pan] .benchmark-layout {
  width: 100%;
  grid-template-columns: minmax(220px, .72fr) minmax(0, 1fr);
  gap: clamp(12px, 1.7vw, 22px);
  min-width: 0;
}

.demo-preview-section[data-feature-pan] .benchmark-visual {
  min-height: clamp(190px, 23vh, 280px);
  min-width: 0;
}

.demo-preview-section[data-feature-pan] .benchmark-visual img {
  padding: clamp(10px, 1.4vw, 16px);
}

.demo-preview-section[data-feature-pan] .benchmark-stats article {
  min-height: 0;
  padding: clamp(15px, 1.6vw, 22px);
}

.demo-preview-section[data-feature-pan] .benchmark-stats strong {
  margin-bottom: 10px;
  font-size: clamp(30px, 3.6vw, 52px);
}

.demo-preview-section[data-feature-pan] .benchmark-stats article:nth-child(3) strong,
.demo-preview-section[data-feature-pan] .benchmark-stats article:nth-child(4) strong {
  font-size: clamp(28px, 2.8vw, 40px);
}

.demo-preview-section[data-feature-pan] .benchmark-stats p {
  margin-top: 10px;
  font-size: clamp(13px, 1.02vw, 16px);
  overflow-wrap: anywhere;
}

.stories-section {
  padding: clamp(58px, 7vw, 92px) 20px;
  background:
    radial-gradient(circle at 8% 12%, rgba(255, 143, 167, .18), transparent 23rem),
    linear-gradient(180deg, #f7f7f4, #eeefeb);
}

.stories-heading {
  width: min(var(--side-safe-content-width), 1160px);
  margin: 0 auto clamp(22px, 3.6vw, 38px);
}

.stories-heading h2 {
  max-width: 780px;
  margin: 0;
  color: var(--ink);
  font-family: var(--body);
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 520;
  line-height: 1.02;
  letter-spacing: 0;
}

.stories-heading p {
  max-width: 680px;
  margin: 14px 0 0;
  color: rgba(35, 35, 32, .66);
  font-size: clamp(16px, 1.7vw, 21px);
  font-weight: 400;
  line-height: 1.45;
}

.stories-carousel {
  padding: 0 clamp(46px, 5vw, 72px) 34px;
  background: transparent;
}

.stories-viewport {
  background: transparent;
}

.stories-track {
  align-items: stretch;
  background: transparent;
}

.story-card {
  flex: 0 0 min(360px, calc(100vw - 88px));
  grid-template-rows: auto auto;
  min-height: 0;
  background: rgba(255, 255, 255, .7);
  box-shadow: 0 22px 54px rgba(22, 25, 21, .07);
}

.story-card img {
  width: 100%;
  height: auto;
  padding: 0;
  object-fit: contain;
  background: rgba(255, 255, 255, .52);
  display: block;
}

.story-copy {
  gap: 10px;
  padding: 18px 18px 20px;
}

.story-copy span {
  font-size: 11px;
  font-weight: 520;
  line-height: 1.3;
}

.story-copy h3 {
  font-family: var(--body);
  font-size: clamp(15px, 1.18vw, 18px);
  font-weight: 420;
  line-height: 1.22;
}

.story-copy p {
  color: rgba(35, 35, 32, .64);
  font-size: 13px;
  font-weight: 360;
  line-height: 1.42;
}

.story-teaser {
  -webkit-line-clamp: 2;
}

.story-read-more {
  min-height: 32px;
  margin-top: 2px;
  padding: 0 13px;
  font-size: 13px;
  font-weight: 520;
}

.story-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  font-size: 0;
  line-height: 0;
}

.story-nav::before {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  line-height: 1;
  transform: translateY(-2px);
}

.story-nav-prev::before {
  content: "‹";
}

.story-nav-next::before {
  content: "›";
}

.story-dots {
  bottom: 2px;
}

.download-section {
  padding: 0;
  color: var(--ink);
  background: #fff;
}

.download-copy {
  width: min(var(--side-safe-content-width), 980px);
  margin: 0 auto;
  padding: 85px clamp(30px, 4vw, 52px);
  color: var(--ink);
  background: #fff;
  border: 0;
  box-shadow: none;
}

.download-copy h2,
#download-heading {
  color: var(--ink);
}

.download-copy p {
  color: rgba(35, 35, 32, .68);
}

.trial-marquee {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  color: #fff;
  background: var(--meadow-green);
  border: 0;
}

.trial-marquee div {
  padding: 13px 0;
  gap: 0;
  animation-duration: 15s;
}

.trial-marquee-track {
  display: flex;
  width: max-content;
}

.trial-marquee-group {
  display: inline-flex;
  align-items: center;
  gap: clamp(52px, 6vw, 104px);
  flex: 0 0 auto;
  min-width: 100vw;
  padding-right: clamp(36px, 5vw, 80px);
  word-spacing: 0;
}

.trial-marquee-group > span {
  flex: 0 0 auto;
}

.trial-marquee-bottom {
  margin-top: 0;
}

.trial-start-button,
.trial-submit-button {
  color: #fff;
  background: var(--meadow-green);
}

.identity-hero.is-hero-plush-editing .hero-plush-canvas {
  cursor: grab;
  pointer-events: auto;
}

.identity-hero.is-hero-plush-editing .hero-plush-canvas.is-dragging {
  cursor: grabbing;
}

body.is-hero-mobile-edit-preview {
  background: #10100f;
}

body.is-hero-mobile-edit-preview .identity-hero.is-hero-plush-mobile-editing {
  width: min(430px, 100vw);
  min-height: 920px;
  margin: 0 auto;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .14), 0 30px 90px rgba(0, 0, 0, .36);
}

body.is-hero-mobile-edit-preview .identity-hero.is-hero-plush-mobile-editing .hero-pin {
  min-height: 920px;
  padding-left: 14px;
  padding-right: 14px;
}

body.is-hero-mobile-edit-preview .identity-hero.is-hero-plush-mobile-editing .hero-wordmark {
  width: 90vw;
  max-width: min(90vw, 386px);
  font-size: clamp(46px, 16vw, 70px);
}

body.is-hero-mobile-edit-preview .identity-hero.is-hero-plush-mobile-editing .hero-sales-card {
  left: 22px;
  right: 22px;
  bottom: 22px;
  width: auto;
  transform: none;
}

.hero-plush-editor {
  position: absolute;
  right: clamp(18px, 3vw, 42px);
  bottom: clamp(96px, 12vh, 150px);
  z-index: 80;
  width: min(330px, calc(100vw - 36px));
  padding: 14px;
  color: #111;
  font-family: var(--body);
  font-size: 12px;
  line-height: 1.4;
  background: rgba(255, 255, 255, .88);
  border: 1px solid rgba(5, 5, 5, .12);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .16);
  backdrop-filter: blur(18px);
}

.hero-plush-editor strong {
  display: block;
  margin-bottom: 4px;
  font-size: 13px;
}

.hero-plush-editor p {
  margin: 0 0 10px;
  color: rgba(17, 17, 17, .66);
}

.hero-plush-editor code {
  display: block;
  min-height: 18px;
  margin-bottom: 10px;
  overflow: hidden;
  color: rgba(17, 17, 17, .72);
  font-family: var(--mono);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-plush-editor-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.hero-plush-editor button {
  min-height: 32px;
  padding: 0 12px;
  color: #fff;
  font: 700 12px/1 var(--body);
  background: var(--meadow-green);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
}

.hero-plush-editor button[data-reset-plush-layout] {
  color: rgba(17, 17, 17, .72);
  background: rgba(17, 17, 17, .08);
}

@media (min-width: 861px) and (max-width: 1180px) {
  .demo-preview-section[data-feature-pan] .benchmark-section-inline {
    justify-self: start;
    width: calc(100vw - 112px);
    margin: clamp(6px, 1vh, 12px) 0 0 56px;
  }
}

@media (max-width: 860px) {
  .scenario-card {
    width: 100%;
  }

  .demo-preview-section[data-feature-pan] {
    --feature-pane-height: 100dvh;
    min-height: var(--feature-pan-height);
    padding: 0;
    overflow: clip;
  }

  .demo-preview-section[data-feature-pan] .demo-preview-sticky {
    position: sticky;
    top: 0;
    height: var(--feature-pane-height);
    min-height: 0;
    display: grid;
  }

  .demo-preview-section[data-feature-pan] .demo-preview-copy {
    width: calc(100vw - 28px);
    margin: 0 auto;
  }

  .demo-preview-section[data-feature-pan] .demo-preview-grid {
    margin-left: 14px;
  }

  .demo-preview-section[data-feature-pan] .feature-card {
    flex-basis: min(310px, calc(100vw - 54px));
    width: min(310px, calc(100vw - 54px));
    height: var(--feature-card-equal-height, auto);
    min-height: 0;
    flex: none;
  }

  .demo-preview-section[data-feature-pan] .benchmark-section-inline {
    justify-self: start;
    width: calc(100vw - 28px);
    margin: 28px 0 0 14px;
  }

  .demo-preview-section[data-feature-pan] .benchmark-layout {
    grid-template-columns: 1fr;
  }

  .stories-heading h2 {
    font-size: clamp(32px, 10vw, 48px);
  }

  .download-copy {
    width: calc(100vw - 28px);
    padding: 28px 18px;
  }
}

/* Release responsive QA: keep the landing page inside every viewport. */
html,
body {
  max-width: 100%;
  overflow-x: clip;
}

.demo-preview-section[data-feature-pan] .benchmark-section-inline,
.demo-preview-section[data-feature-pan] .benchmark-layout,
.demo-preview-section[data-feature-pan] .benchmark-visual,
.demo-preview-section[data-feature-pan] .benchmark-stats {
  max-width: 100%;
}

@media (min-width: 1181px) and (max-width: 1500px) {
  .demo-preview-section[data-feature-pan] .benchmark-section-inline {
    width: min(calc(100vw - 184px), 940px);
  }

  .demo-preview-section[data-feature-pan] .benchmark-layout {
    grid-template-columns: minmax(220px, .66fr) minmax(0, 1fr);
    gap: 16px;
  }

  .demo-preview-section[data-feature-pan] .benchmark-stats strong {
    font-size: clamp(28px, 3vw, 42px);
  }

  .demo-preview-section[data-feature-pan] .benchmark-stats article:nth-child(3) strong,
  .demo-preview-section[data-feature-pan] .benchmark-stats article:nth-child(4) strong {
    font-size: clamp(26px, 2.4vw, 34px);
  }

  .demo-preview-section[data-feature-pan] .benchmark-stats article {
    padding: 18px;
  }
}

@media (max-width: 1180px) {
  .demo-preview-section[data-feature-pan] {
    --feature-pane-height: auto;
    min-height: 0;
    padding: 0;
    overflow: clip;
  }

  .demo-preview-section[data-feature-pan] .demo-preview-sticky {
    position: relative;
    height: auto;
    min-height: 0;
    display: block;
    padding: clamp(56px, 8vw, 86px) 0 clamp(48px, 7vw, 74px);
    overflow: visible;
  }

  .demo-preview-section[data-feature-pan] .demo-preview-copy {
    width: min(calc(100vw - 40px), 940px);
    margin: 0 auto clamp(24px, 4vw, 36px);
  }

  .demo-preview-section[data-feature-pan] .demo-preview-copy h2 {
    max-width: 11ch;
    font-size: clamp(40px, 9vw, 72px);
  }

  .demo-preview-section[data-feature-pan] .demo-preview-copy p {
    max-width: 760px;
  }

  .demo-preview-section[data-feature-pan] .feature-scroll-lane {
    width: min(calc(100vw - 40px), 940px);
    margin: 0 auto;
    min-height: 0;
  }

  .demo-preview-section[data-feature-pan] .demo-preview-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    margin: 0;
    gap: 18px;
    transform: none !important;
  }

  .demo-preview-section[data-feature-pan] .feature-card,
  .demo-preview-section[data-feature-pan] .feature-card.is-active,
  .demo-preview-section[data-feature-pan] .feature-card.is-prev,
  .demo-preview-section[data-feature-pan] .feature-card.is-next,
  .demo-preview-section[data-feature-pan] .feature-card.is-far-prev,
  .demo-preview-section[data-feature-pan] .feature-card.is-far-next,
  .demo-preview-section[data-feature-pan] .feature-card.is-recording-card {
    width: 100%;
    height: auto;
    min-height: 0;
    flex: none;
  }

  .demo-preview-section[data-feature-pan] .benchmark-section-inline {
    width: min(calc(100vw - 40px), 940px);
    margin: clamp(28px, 5vw, 46px) auto 0;
    padding: 0;
    overflow: visible;
  }

  .demo-preview-section[data-feature-pan] .benchmark-heading {
    width: 100%;
  }

  .demo-preview-section[data-feature-pan] .benchmark-layout {
    grid-template-columns: 1fr;
    width: 100%;
    gap: 18px;
  }

  .demo-preview-section[data-feature-pan] .benchmark-visual {
    min-height: 0;
  }

  .demo-preview-section[data-feature-pan] .benchmark-visual img {
    height: auto;
  }

  .demo-preview-section[data-feature-pan] .benchmark-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }
}

@media (max-width: 760px) {
  .hero-pin {
    min-height: 100svh;
    padding: 78px 16px 104px;
  }

  .corner {
    top: 18px;
    font-size: 8px;
    line-height: 1.08;
  }

  .corner-left {
    left: 14px;
  }

  .corner-right {
    right: 14px;
  }

  .corner-center {
    top: 48px;
    width: calc(100vw - 28px);
  }

  .brand-universal .hero-wordmark,
  .hero-wordmark {
    width: 90vw;
    max-width: 90vw;
    font-size: clamp(62px, 17.5vw, 74px);
    line-height: .9;
    transform: translateY(2vh);
  }

  .hero-wordmark .word-line-main {
    white-space: normal;
    flex-wrap: wrap;
    row-gap: 0;
  }

  .trial-pill {
    left: 14px;
    right: 14px;
    bottom: 16px;
    width: auto;
    padding: 8px 8px 8px 18px;
    gap: 12px;
  }

  .trial-pill span {
    font-size: 10px;
  }

  .trial-pill strong {
    font-size: 13px;
    line-height: 1.35;
  }

  .trial-pill .primary-cta {
    min-height: 42px;
    padding: 0 18px;
    font-size: 14px;
  }

  .scenario-grid {
    width: calc(100vw - 28px);
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .scenario-card,
  .scenario-card:nth-child(odd),
  .scenario-card:nth-child(even),
  .scenario-card:nth-child(3),
  .scenario-card:nth-child(4) {
    width: 100%;
    max-width: none;
    margin: 0;
    align-self: stretch;
  }

  .demo-preview-section[data-feature-pan] .demo-preview-sticky {
    padding: 48px 0 56px;
  }

  .demo-preview-section[data-feature-pan] .demo-preview-copy,
  .demo-preview-section[data-feature-pan] .feature-scroll-lane,
  .demo-preview-section[data-feature-pan] .benchmark-section-inline {
    width: calc(100vw - 28px);
  }

  .demo-preview-section[data-feature-pan] .demo-preview-copy h2,
  .demo-preview-section[data-feature-pan] .benchmark-heading h2 {
    max-width: 100%;
    font-size: clamp(36px, 12vw, 58px);
  }

  .demo-preview-section[data-feature-pan] .demo-preview-grid,
  .demo-preview-section[data-feature-pan] .benchmark-stats {
    grid-template-columns: 1fr;
  }

  .demo-preview-section[data-feature-pan] .feature-card-copy {
    padding: 18px;
  }

  .demo-preview-section[data-feature-pan] .demo-preview-grid strong {
    font-size: clamp(22px, 7vw, 30px);
  }

  .demo-preview-section[data-feature-pan] .benchmark-stats article:nth-child(n) {
    border-right: 0;
    border-bottom: 1px solid rgba(244, 242, 234, .16);
  }

  .demo-preview-section[data-feature-pan] .benchmark-stats article:last-child {
    border-bottom: 0;
  }

  .stories-section {
    padding: 52px 0 58px;
  }

  .stories-heading {
    width: calc(100vw - 32px);
  }

  .stories-carousel {
    padding: 0 46px 34px;
  }

  .story-card {
    flex-basis: calc(100vw - 108px);
  }

  .story-nav {
    width: 44px;
    height: 44px;
  }

  .download-copy {
    width: 100%;
    padding: 64px 18px;
  }

  .download-copy h2 {
    font-size: clamp(48px, 16vw, 72px);
  }

  .trial-marquee div {
    padding: 11px 0;
  }
}

/* Final release responsive pass: protect mid-width desktop and compact mobile. */
@media (min-width: 1181px) and (max-width: 1500px) {
  .demo-preview-section[data-feature-pan] .benchmark-section-inline {
    width: min(calc(100vw - 260px), 880px);
    margin-left: auto;
    margin-right: auto;
  }

  .demo-preview-section[data-feature-pan] .benchmark-layout {
    grid-template-columns: minmax(190px, .6fr) minmax(0, 1fr);
    gap: 12px;
  }

  .demo-preview-section[data-feature-pan] .benchmark-stats article {
    padding: 16px;
  }

  .demo-preview-section[data-feature-pan] .benchmark-stats strong {
    font-size: clamp(26px, 2.7vw, 38px);
  }

  .demo-preview-section[data-feature-pan] .benchmark-stats p {
    font-size: 13px;
    line-height: 1.45;
  }
}

@media (min-width: 1181px) and (max-width: 1320px) {
  .demo-preview-section[data-feature-pan] .benchmark-section-inline {
    width: min(calc(100vw - 160px), 820px);
  }
}

@media (max-width: 760px) {
  .capability-section {
    --capability-section-pad-y: 58px;
    padding: 58px 0 68px;
  }

  .capability-intro {
    width: calc(100vw - 28px);
    margin-bottom: 34px;
  }

  .capability-intro h2 {
    font-size: clamp(44px, 16vw, 68px);
    line-height: .9;
  }

  .scenario-media,
  .scenario-media img {
    min-height: 0;
  }

  .scenario-copy {
    padding: 22px 18px;
  }

  .demo-preview-section[data-feature-pan] {
    background: #050706;
  }

  .demo-preview-section[data-feature-pan] .demo-preview-sticky {
    padding: 42px 0 50px;
  }

  .demo-preview-section[data-feature-pan] .demo-preview-copy {
    margin-bottom: 20px;
  }

  .demo-preview-section[data-feature-pan] .demo-preview-copy h2 {
    font-size: clamp(34px, 11vw, 52px);
    line-height: .98;
  }

  .demo-preview-section[data-feature-pan] .demo-preview-copy p {
    font-size: 15px;
    line-height: 1.55;
  }

  .demo-preview-section[data-feature-pan] .feature-scroll-lane {
    width: 100vw;
    margin: 0;
    padding: 0 14px 8px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-padding-inline: 14px;
    scroll-snap-type: x mandatory;
  }

  .demo-preview-section[data-feature-pan] .feature-scroll-lane::-webkit-scrollbar {
    display: none;
  }

  .demo-preview-section[data-feature-pan] .demo-preview-grid,
  .demo-preview-section.is-feature-stacked[data-feature-pan] .demo-preview-grid {
    display: flex;
    width: max-content;
    gap: 14px;
    margin: 0;
  }

  .demo-preview-section[data-feature-pan] .feature-card,
  .demo-preview-section[data-feature-pan] .feature-card.is-active,
  .demo-preview-section[data-feature-pan] .feature-card.is-prev,
  .demo-preview-section[data-feature-pan] .feature-card.is-next,
  .demo-preview-section[data-feature-pan] .feature-card.is-far-prev,
  .demo-preview-section[data-feature-pan] .feature-card.is-far-next,
  .demo-preview-section[data-feature-pan] .feature-card.is-recording-card {
    flex: 0 0 min(310px, calc(100vw - 54px));
    width: min(310px, calc(100vw - 54px));
    scroll-snap-align: center;
  }

  .demo-preview-section[data-feature-pan] .feature-card-media {
    aspect-ratio: 16 / 9;
    min-height: 0;
  }

  .demo-preview-section[data-feature-pan] .feature-card-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .demo-preview-section[data-feature-pan] .feature-card-copy {
    padding: 16px;
  }

  .demo-preview-section[data-feature-pan] .demo-preview-grid strong {
    font-size: clamp(21px, 6vw, 26px);
    line-height: 1.12;
  }

  .demo-preview-section[data-feature-pan] .demo-preview-grid small {
    font-size: 14px;
    line-height: 1.5;
  }

  .demo-preview-section[data-feature-pan] .benchmark-section-inline {
    width: calc(100vw - 28px);
    margin: 34px auto 0;
  }

  .demo-preview-section[data-feature-pan] .benchmark-heading {
    margin-bottom: 20px;
  }

  .demo-preview-section[data-feature-pan] .benchmark-layout {
    gap: 16px;
  }

  .demo-preview-section[data-feature-pan] .benchmark-stats article {
    padding: 18px;
  }

  .stories-section {
    padding: 48px 0 56px;
  }

  .stories-carousel {
    padding: 0 42px 32px;
  }

  .story-card {
    flex-basis: calc(100vw - 104px);
  }

  .story-copy h3 {
    font-size: 19px;
    line-height: 1.22;
  }

  .story-copy p {
    font-size: 14px;
  }

  .download-copy {
    padding: 70px 18px;
  }
}

/* Final mobile and carousel correction pass. */
.stories-carousel,
.stories-viewport,
.stories-track {
  background: transparent !important;
}

.story-nav {
  position: absolute;
  display: grid;
  place-items: center;
  padding: 0;
  font-size: 0;
  line-height: 0;
}

.story-nav::before {
  content: "";
  display: block;
  width: 13px;
  height: 13px;
  border-color: currentColor;
  border-style: solid;
  border-width: 0 0 4px 4px;
  transform-origin: center;
}

.story-nav-prev::before {
  transform: translateX(2px) rotate(45deg);
}

.story-nav-next::before {
  transform: translateX(-2px) rotate(225deg);
}

@media (max-width: 760px) {
  .corner {
    top: 18px;
    font-size: 11px;
    line-height: .96;
    text-shadow: 0 1px 10px rgba(0, 0, 0, .34);
  }

  .corner-left,
  .corner-right {
    max-width: 38vw;
    white-space: normal;
  }

  .corner-left {
    left: 10px;
  }

  .corner-right {
    right: 10px;
  }

  .corner-center {
    top: auto;
    bottom: calc(max(20px, env(safe-area-inset-bottom)) + 232px);
    width: min(86vw, 330px);
    max-width: none;
    font-size: 10px;
    line-height: 1.1;
    white-space: normal;
  }

  .brand-universal .hero-wordmark,
  .product-page .hero-wordmark,
  .hero-wordmark {
    width: 90vw;
    max-width: 90vw;
    font-size: clamp(62px, 17.5vw, 74px);
    line-height: .9;
    transform: translateY(2vh);
  }

  .hero-wordmark .word-line-main {
    max-width: 90vw;
    display: inline-grid;
    grid-template-columns: repeat(6, max-content);
    justify-content: center;
    justify-items: center;
    column-gap: 0;
    row-gap: 0;
    text-align: center;
    white-space: normal;
  }

  .hero-wordmark .word-line-main .hero-letter:nth-child(8) {
    grid-row: 2;
    grid-column: 2;
  }

  .hero-wordmark .word-line-main .hero-letter:nth-child(9) {
    grid-row: 2;
    grid-column: 3;
  }

  .hero-wordmark .word-line-main .hero-letter:nth-child(10) {
    grid-row: 2;
    grid-column: 4;
  }

  .hero-wordmark .word-line-main .hero-letter:nth-child(11) {
    grid-row: 2;
    grid-column: 5;
  }

  .hero-pin.has-plush-models .hero-plush-canvas {
    opacity: 1;
  }

  .hero-wordmark .hero-letter-space {
    display: none;
  }

  .hero-sales-card {
    left: 22px;
    right: 22px;
    bottom: max(20px, env(safe-area-inset-bottom));
    width: auto;
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px;
    border-radius: 34px;
    transform: none;
  }

  .hero-sales-card span {
    font-size: 11px;
  }

  .hero-sales-card strong {
    font-size: clamp(18px, 5vw, 23px);
    line-height: 1.28;
    overflow-wrap: anywhere;
  }

  .hero-sales-card a {
    width: min(184px, 100%);
    justify-self: center;
    min-height: 48px;
    padding: 0 28px;
    font-size: 15px;
  }

  .product-page .hero-sales-card a {
    width: min(184px, 100%);
  }

  .stories-carousel {
    padding-left: 42px;
    padding-right: 42px;
  }

  .story-nav::before {
    width: 12px;
    height: 12px;
    border-width: 0 0 4px 4px;
  }
}

@media (min-width: 1181px) {
  .demo-preview-section[data-feature-pan] {
    --feature-pane-height: clamp(920px, 100dvh, 1160px);
    background: #050706;
    overflow: clip;
  }

  .demo-preview-section[data-feature-pan] .demo-preview-sticky {
    height: var(--feature-pane-height);
    min-height: var(--feature-pane-height);
    grid-template-rows: auto auto auto;
    align-content: start;
    padding-top: clamp(28px, 3.2vh, 44px);
    padding-bottom: clamp(24px, 3vh, 40px);
    row-gap: clamp(12px, 1.45vh, 18px);
    overflow: hidden;
  }

  .demo-preview-section[data-feature-pan] .feature-scroll-lane {
    min-height: clamp(330px, 32vh, 410px);
  }

  .demo-preview-section[data-feature-pan] .benchmark-section-inline {
    width: min(1220px, calc(100vw - clamp(96px, 10vw, 180px)));
    max-width: 1220px;
    box-sizing: border-box;
    justify-self: center;
    margin: clamp(12px, 1.8vh, 24px) auto 0;
    padding: 0 0 clamp(20px, 2.4vh, 34px);
    overflow: visible;
  }

  .demo-preview-section[data-feature-pan] .benchmark-heading {
    margin-bottom: clamp(14px, 1.8vh, 24px);
  }

  .demo-preview-section[data-feature-pan] .benchmark-heading h2 {
    font-size: clamp(48px, 4.25vw, 72px);
    line-height: .95;
  }

  .demo-preview-section[data-feature-pan] .benchmark-layout {
    width: 100%;
    max-width: 100%;
    display: grid;
    grid-template-columns: minmax(360px, .92fr) minmax(520px, 1.08fr);
    gap: clamp(18px, 2vw, 30px);
    align-items: stretch;
  }

  .demo-preview-section[data-feature-pan] .benchmark-visual,
  .demo-preview-section[data-feature-pan] .benchmark-stats {
    min-width: 0;
    min-height: clamp(310px, 21vw, 390px);
    height: 100%;
  }

  .demo-preview-section[data-feature-pan] .benchmark-visual img {
    height: 100%;
    object-fit: contain;
  }

  .demo-preview-section[data-feature-pan] .benchmark-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .demo-preview-section[data-feature-pan] .benchmark-stats article {
    min-width: 0;
    min-height: 0;
    padding: clamp(18px, 1.9vw, 28px);
  }

  .demo-preview-section[data-feature-pan] .benchmark-stats strong {
    font-size: clamp(40px, 3vw, 56px);
  }

  .demo-preview-section[data-feature-pan] .benchmark-stats article:nth-child(3) strong,
  .demo-preview-section[data-feature-pan] .benchmark-stats article:nth-child(4) strong {
    font-size: clamp(34px, 2.65vw, 48px);
  }

  .demo-preview-section[data-feature-pan] .benchmark-stats p {
    max-width: 21em;
  }
}

@media (min-width: 1181px) and (max-width: 1500px) {
  .demo-preview-section[data-feature-pan] .benchmark-section-inline {
    width: min(1040px, calc(100vw - 84px));
  }

  .demo-preview-section[data-feature-pan] .benchmark-layout {
    grid-template-columns: minmax(300px, .88fr) minmax(460px, 1.12fr);
  }

  .demo-preview-section[data-feature-pan] .benchmark-visual,
  .demo-preview-section[data-feature-pan] .benchmark-stats {
    min-height: clamp(285px, 23vw, 350px);
  }
}

/* Final feature-pan and story-carousel corrections. */
.demo-preview-section[data-feature-pan] .feature-card,
.demo-preview-section[data-feature-pan] .feature-card.is-active,
.demo-preview-section[data-feature-pan] .feature-card.is-prev,
.demo-preview-section[data-feature-pan] .feature-card.is-next,
.demo-preview-section[data-feature-pan] .feature-card.is-far-prev,
.demo-preview-section[data-feature-pan] .feature-card.is-far-next,
.demo-preview-section[data-feature-pan] .feature-card.is-recording-card {
  box-sizing: border-box;
  align-self: stretch;
  height: var(--feature-card-equal-height, auto) !important;
  min-height: var(--feature-card-equal-height, auto) !important;
}

.story-card,
.story-card.is-current-story {
  box-shadow: none !important;
}

.stories-carousel,
.stories-viewport,
.stories-track {
  background: transparent !important;
  box-shadow: none !important;
}

.stories-carousel::before,
.stories-carousel::after,
.stories-viewport::before,
.stories-viewport::after,
.stories-track::before,
.stories-track::after {
  background: transparent !important;
  box-shadow: none !important;
}

.story-nav {
  position: absolute !important;
  display: grid !important;
  place-items: center !important;
  padding: 0 !important;
  font-size: 0 !important;
  line-height: 0 !important;
}

.story-nav::before {
  content: "" !important;
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 12px;
  height: 12px;
  border-color: currentColor;
  border-style: solid;
  border-width: 0 0 4px 4px;
  transform-origin: center;
  margin: -6px 0 0 -6px;
}

.story-nav-prev::before {
  transform: translateX(-2px) rotate(45deg) translateY(8px) !important;
}

.story-nav-next::before {
  transform: translateX(2px) rotate(225deg) translateY(-8px) !important;
}

@media (max-width: 760px) {
  .demo-preview-section[data-feature-pan] {
    --feature-pane-height: 100dvh;
    height: var(--feature-pan-height) !important;
    min-height: var(--feature-pan-height) !important;
    overflow: clip;
  }

  .demo-preview-section[data-feature-pan] .demo-preview-sticky {
    position: sticky;
    top: 0;
    height: var(--feature-pane-height);
    min-height: var(--feature-pane-height);
    grid-template-rows: auto auto;
    align-content: start;
    align-items: start;
    row-gap: 22px;
    padding: 34px 0 78px;
    overflow: visible;
    box-sizing: border-box;
  }

  .demo-preview-section[data-feature-pan] .demo-preview-copy {
    width: calc(100vw - 32px);
    margin: 0 auto;
  }

  .demo-preview-section[data-feature-pan] .feature-scroll-lane {
    width: 100vw;
    margin: 0;
    padding: 0;
    overflow: visible;
    align-self: center;
    scroll-snap-type: none;
    -webkit-overflow-scrolling: auto;
  }

  .demo-preview-section[data-feature-pan] .benchmark-section-inline {
    margin-top: clamp(48px, 8svh, 84px) !important;
  }

  .demo-preview-section[data-feature-pan] .demo-preview-grid,
  .demo-preview-section.is-feature-stacked[data-feature-pan] .demo-preview-grid {
    display: flex !important;
    grid-template-columns: none !important;
    flex-wrap: nowrap !important;
    align-items: stretch !important;
    gap: 18px !important;
    width: max-content !important;
    margin: 0 !important;
    transform: translate3d(var(--feature-pan-x), 0, 0) !important;
    will-change: transform;
  }

  .demo-preview-section[data-feature-pan] .feature-card,
  .demo-preview-section[data-feature-pan] .feature-card.is-active,
  .demo-preview-section[data-feature-pan] .feature-card.is-prev,
  .demo-preview-section[data-feature-pan] .feature-card.is-next,
  .demo-preview-section[data-feature-pan] .feature-card.is-far-prev,
  .demo-preview-section[data-feature-pan] .feature-card.is-far-next,
  .demo-preview-section[data-feature-pan] .feature-card.is-recording-card {
    flex: 0 0 min(330px, calc(100vw - 44px)) !important;
    width: min(330px, calc(100vw - 44px)) !important;
    height: var(--feature-card-equal-height, auto) !important;
    min-height: var(--feature-card-equal-height, auto) !important;
    scroll-snap-align: unset;
  }

  .stories-carousel {
    padding: 0 56px 64px;
  }

  .stories-viewport {
    overflow: hidden;
    touch-action: pan-y;
  }

  .story-nav {
    top: 50%;
    bottom: auto;
    width: 52px;
    height: 52px;
    transform: translateY(-50%);
    z-index: 6;
  }

  .story-nav-prev {
    left: 10px;
  }

  .story-nav-next {
    right: 10px;
  }

  .story-dots {
    bottom: 18px;
  }
}

/* Final hero mobile/editor wordmark guard. The editor URL is often viewed on desktop,
   so it needs the same two-line lock as real mobile. */
@media (max-width: 760px) {
  .brand-universal .hero-wordmark,
  .product-page .hero-wordmark,
  .hero-wordmark {
    width: 90vw !important;
    max-width: 90vw !important;
    font-size: clamp(56px, 15.5vw, 78px) !important;
    line-height: .84 !important;
    transform: translateY(clamp(64px, 9vh, 86px)) !important;
    z-index: 8 !important;
  }

  .hero-wordmark .word-line-main {
    display: grid !important;
    grid-template-columns: repeat(6, 1fr) !important;
    width: 100% !important;
    max-width: 100% !important;
    justify-content: stretch !important;
    justify-items: center !important;
    align-items: center !important;
    white-space: normal !important;
  }

  .hero-wordmark .hero-letter-space {
    display: none !important;
  }

  .hero-wordmark .word-line-main .hero-letter:nth-child(8) {
    grid-row: 2 !important;
    grid-column: 2 !important;
  }

  .hero-wordmark .word-line-main .hero-letter:nth-child(9) {
    grid-row: 2 !important;
    grid-column: 3 !important;
  }

  .hero-wordmark .word-line-main .hero-letter:nth-child(10) {
    grid-row: 2 !important;
    grid-column: 4 !important;
  }

  .hero-wordmark .word-line-main .hero-letter:nth-child(11) {
    grid-row: 2 !important;
    grid-column: 5 !important;
  }

  .hero-pin.has-plush-models .hero-plush-canvas {
    z-index: 2 !important;
  }

  .hero-sales-card {
    z-index: 6 !important;
  }
}

body.is-hero-mobile-edit-preview .identity-hero.is-hero-plush-mobile-editing .hero-wordmark {
  width: min(90vw, 386px) !important;
  max-width: min(90vw, 386px) !important;
  font-size: clamp(56px, 15.5vw, 78px) !important;
  line-height: .84 !important;
  transform: translateY(clamp(64px, 9vh, 86px)) !important;
}

body.is-hero-mobile-edit-preview .identity-hero.is-hero-plush-mobile-editing .hero-wordmark .word-line-main {
  display: grid !important;
  grid-template-columns: repeat(6, 1fr) !important;
  width: 100% !important;
  max-width: 100% !important;
  justify-content: stretch !important;
  justify-items: center !important;
  align-items: center !important;
  white-space: normal !important;
}

body.is-hero-mobile-edit-preview .identity-hero.is-hero-plush-mobile-editing .hero-wordmark .hero-letter-space {
  display: none !important;
}

body.is-hero-mobile-edit-preview .identity-hero.is-hero-plush-mobile-editing .hero-wordmark .word-line-main .hero-letter:nth-child(8) {
  grid-row: 2 !important;
  grid-column: 2 !important;
}

body.is-hero-mobile-edit-preview .identity-hero.is-hero-plush-mobile-editing .hero-wordmark .word-line-main .hero-letter:nth-child(9) {
  grid-row: 2 !important;
  grid-column: 3 !important;
}

body.is-hero-mobile-edit-preview .identity-hero.is-hero-plush-mobile-editing .hero-wordmark .word-line-main .hero-letter:nth-child(10) {
  grid-row: 2 !important;
  grid-column: 4 !important;
}

body.is-hero-mobile-edit-preview .identity-hero.is-hero-plush-mobile-editing .hero-wordmark .word-line-main .hero-letter:nth-child(11) {
  grid-row: 2 !important;
  grid-column: 5 !important;
}

.is-mobile-resource-constrained .demo-preview-section[data-feature-pan] .demo-preview-grid {
  will-change: transform !important;
}

@media (max-width: 760px) {
  .demo-preview-section[data-feature-pan] .benchmark-section-inline {
    width: calc(100vw - 28px) !important;
    max-width: calc(100vw - 28px) !important;
    margin: 34px auto 0 !important;
    padding-bottom: 0 !important;
    overflow: visible !important;
  }

  .demo-preview-section[data-feature-pan] .benchmark-layout {
    width: 100% !important;
    max-width: 100% !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    overflow: visible !important;
  }

  .demo-preview-section[data-feature-pan] .benchmark-visual,
  .demo-preview-section[data-feature-pan] .benchmark-stats {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    overflow: visible !important;
  }

  .demo-preview-section[data-feature-pan] .benchmark-visual {
    padding: 12px !important;
  }

  .demo-preview-section[data-feature-pan] .benchmark-visual img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
    object-fit: contain !important;
  }

  .demo-preview-section[data-feature-pan] .benchmark-stats {
    grid-template-columns: 1fr !important;
  }

  .demo-preview-section[data-feature-pan] .benchmark-stats article {
    min-height: 0 !important;
    padding: 20px 18px !important;
    border-right: 0 !important;
  }

  .demo-preview-section[data-feature-pan] .benchmark-stats article:not(:last-child) {
    border-bottom: 1px solid rgba(244, 242, 234, .16) !important;
  }
}

/* Story carousel final layout: desktop shows 3 cards, mobile shows 1 card plus a 10% peek. */
.stories-carousel {
  --story-gap: clamp(18px, 1.8vw, 28px);
  width: min(1500px, calc(100vw - 64px)) !important;
  max-width: 1500px !important;
  padding: 0 clamp(48px, 4.5vw, 72px) 58px !important;
  box-sizing: border-box !important;
}

.stories-viewport {
  width: 100% !important;
  overflow: hidden !important;
  background: transparent !important;
}

.stories-track {
  gap: var(--story-gap) !important;
  align-items: stretch !important;
  background: transparent !important;
}

.story-card {
  flex: 0 0 calc((100% - (var(--story-gap) * 2)) / 3) !important;
  max-width: none !important;
  box-sizing: border-box !important;
  box-shadow: none !important;
}

.story-card img {
  width: 100% !important;
  height: auto !important;
  display: block !important;
  object-fit: contain !important;
}

.story-nav {
  width: 56px !important;
  height: 56px !important;
  display: grid !important;
  place-items: center !important;
  padding: 0 !important;
  font-size: 0 !important;
  line-height: 0 !important;
}

.story-nav::before {
  content: "" !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  width: 18px !important;
  height: 22px !important;
  margin: 0 !important;
  border: 0 !important;
  background: currentColor !important;
  -webkit-clip-path: polygon(68% 0, 84% 14%, 43% 50%, 84% 86%, 68% 100%, 12% 50%) !important;
  clip-path: polygon(68% 0, 84% 14%, 43% 50%, 84% 86%, 68% 100%, 12% 50%) !important;
  transform-origin: 50% 50% !important;
  -webkit-mask: none !important;
  mask: none !important;
}

.story-nav-prev::before {
  transform: translate(calc(-50% - 1px), -50%) !important;
}

.story-nav-next::before {
  transform: translate(calc(-50% + 1px), -50%) rotate(180deg) !important;
}

@media (max-width: 760px) {
  .stories-carousel {
    --story-gap: 12px;
    width: calc(100vw - 32px) !important;
    max-width: none !important;
    padding: 0 0 58px !important;
  }

  .story-card {
    flex: 0 0 calc(90% - var(--story-gap)) !important;
    max-width: calc(90% - var(--story-gap)) !important;
  }

  .story-nav {
    width: 52px !important;
    height: 52px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
  }

  .story-nav-prev {
    left: -14px !important;
  }

  .story-nav-next {
    right: -14px !important;
  }

  .story-nav::before {
    width: 17px !important;
    height: 21px !important;
  }
}

/* Final measured desktop spacing for the pinned feature row and benchmark block. */
@media (min-width: 1181px) {
  .demo-preview-section[data-feature-pan] {
    --feature-pane-height: 100dvh;
    --feature-top-safe: clamp(64px, 6.5vh, 104px);
    --feature-copy-lane-gap: clamp(18px, 2.4vh, 32px);
    --feature-benchmark-gap: clamp(18px, 2.4vh, 32px);
    --feature-bottom-safe: clamp(96px, 12vh, 180px);
    --feature-release-buffer: clamp(460px, 46vh, 760px);
    --feature-benchmark-scale: 1;
    height: var(--feature-pan-height) !important;
    min-height: var(--feature-pan-height) !important;
    position: relative;
    z-index: 2;
    overflow: clip !important;
  }

  .demo-preview-section[data-feature-pan] .demo-preview-sticky {
    height: var(--feature-pane-height) !important;
    min-height: 0 !important;
    grid-template-rows: auto auto auto !important;
    align-content: start !important;
    align-items: stretch !important;
    padding-top: var(--feature-top-safe) !important;
    padding-bottom: var(--feature-bottom-safe) !important;
    row-gap: 0 !important;
    overflow: visible !important;
    box-sizing: border-box !important;
  }

  .demo-preview-section[data-feature-pan] .demo-preview-bg-video {
    height: 100dvh !important;
    max-height: 100dvh !important;
    transform: none !important;
    clip-path: inset(0) !important;
    contain: paint !important;
  }

  .demo-preview-section[data-feature-pan] .demo-preview-copy {
    margin: 0 0 0 clamp(32px, 4vw, 76px) !important;
  }

  .demo-preview-section[data-feature-pan] .feature-scroll-lane {
    margin-top: var(--feature-copy-lane-gap) !important;
    margin-bottom: 0 !important;
    height: var(--feature-card-equal-height, clamp(330px, 32vh, 410px)) !important;
    min-height: var(--feature-card-equal-height, clamp(330px, 32vh, 410px)) !important;
  }

  .demo-preview-section[data-feature-pan] .benchmark-section-inline {
    max-width: 1220px !important;
    width: min(1220px, calc(100vw - clamp(96px, 10vw, 180px))) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-top: var(--feature-benchmark-gap) !important;
    margin-bottom: 0 !important;
    padding-bottom: clamp(20px, 2.4vh, 34px) !important;
    transform: none !important;
    transform-origin: top center;
    overflow: visible !important;
    position: relative !important;
    z-index: 3 !important;
  }

  .demo-preview-section[data-feature-pan] .benchmark-section-inline::before {
    inset: -18px -50vw -90px !important;
    background: none !important;
  }

  .demo-preview-section[data-feature-pan] .benchmark-layout,
  .demo-preview-section[data-feature-pan] .benchmark-visual,
  .demo-preview-section[data-feature-pan] .benchmark-stats {
    overflow: visible !important;
  }

  .demo-preview-section[data-feature-pan] + .stories-section {
    position: relative;
    z-index: 1;
  }
}

/* Mobile capability zigzag: keep the same left/right rhythm as desktop. */
@media (max-width: 700px) {
  .capability-section {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .capability-intro {
    width: calc(100vw - 28px) !important;
  }

  .work-plush-canvas {
    display: block !important;
    top: clamp(280px, 78vw, 360px) !important;
    right: -42vw !important;
    width: 112vw !important;
    height: clamp(1080px, 360vw, 1480px) !important;
    min-height: 0 !important;
    opacity: 0 !important;
  }

  .capability-section.has-work-plush-models .work-plush-canvas {
    opacity: .5 !important;
  }

  .scenario-grid {
    width: calc(100vw - 28px) !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 30px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .scenario-card,
  .scenario-card:nth-child(odd),
  .scenario-card:nth-child(even),
  .scenario-card:nth-child(3),
  .scenario-card:nth-child(4) {
    width: min(82vw, 330px) !important;
    max-width: min(82vw, 330px) !important;
    align-self: flex-start !important;
    margin-top: 0 !important;
  }

  .scenario-card:nth-child(even),
  .scenario-card:nth-child(4) {
    align-self: flex-end !important;
    margin-top: clamp(-42px, -8vw, -24px) !important;
  }

  .scenario-card:nth-child(3) {
    align-self: flex-start !important;
    margin-top: clamp(-30px, -6vw, -18px) !important;
  }
}

/* Mobile hero trial card: compact left copy with the CTA anchored on the right. */
@media (max-width: 700px) {
  .product-page .hero-sales-card,
  body.is-hero-mobile-edit-preview .identity-hero.is-hero-plush-mobile-editing .hero-sales-card {
    left: 14px !important;
    right: 14px !important;
    bottom: max(22px, env(safe-area-inset-bottom)) !important;
    width: auto !important;
    min-height: 0 !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(126px, 34%) !important;
    grid-template-areas:
      "eyebrow cta"
      "copy cta" !important;
    column-gap: 14px !important;
    row-gap: 12px !important;
    align-items: center !important;
    padding: 30px !important;
    border-radius: 42px !important;
    transform: none !important;
  }

  .product-page .hero-sales-card span,
  body.is-hero-mobile-edit-preview .identity-hero.is-hero-plush-mobile-editing .hero-sales-card span {
    grid-area: eyebrow !important;
    font-size: 12px !important;
    line-height: 1 !important;
  }

  .product-page .hero-sales-card strong,
  body.is-hero-mobile-edit-preview .identity-hero.is-hero-plush-mobile-editing .hero-sales-card strong {
    grid-area: copy !important;
    width: min(100%, 13.4em) !important;
    max-width: 13.4em !important;
    color: #050505 !important;
    font-size: 20px !important;
    font-weight: 400 !important;
    line-height: 1.22 !important;
    overflow-wrap: normal !important;
  }

  .product-page .hero-sales-card a,
  body.is-hero-mobile-edit-preview .identity-hero.is-hero-plush-mobile-editing .hero-sales-card a {
    grid-area: cta !important;
    width: min(100%, 150px) !important;
    min-height: 58px !important;
    justify-self: end !important;
    align-self: center !important;
    padding: 0 22px !important;
    font-size: 18px !important;
    white-space: nowrap !important;
  }
}

body.is-hero-mobile-edit-preview .identity-hero.is-hero-plush-mobile-editing .hero-sales-card {
  left: 14px !important;
  right: 14px !important;
  bottom: max(22px, env(safe-area-inset-bottom)) !important;
  width: auto !important;
  min-height: 0 !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(126px, 34%) !important;
  grid-template-areas:
    "eyebrow cta"
    "copy cta" !important;
  column-gap: 14px !important;
  row-gap: 12px !important;
  align-items: center !important;
  padding: 30px !important;
  border-radius: 42px !important;
  transform: none !important;
}

body.is-hero-mobile-edit-preview .identity-hero.is-hero-plush-mobile-editing .hero-sales-card span {
  grid-area: eyebrow !important;
  font-size: 12px !important;
  line-height: 1 !important;
}

body.is-hero-mobile-edit-preview .identity-hero.is-hero-plush-mobile-editing .hero-sales-card strong {
  grid-area: copy !important;
  width: min(100%, 13.4em) !important;
  max-width: 13.4em !important;
  color: #050505 !important;
  font-size: 20px !important;
  font-weight: 400 !important;
  line-height: 1.22 !important;
  overflow-wrap: normal !important;
}

body.is-hero-mobile-edit-preview .identity-hero.is-hero-plush-mobile-editing .hero-sales-card a {
  grid-area: cta !important;
  width: min(100%, 150px) !important;
  min-height: 58px !important;
  justify-self: end !important;
  align-self: center !important;
  padding: 0 22px !important;
  font-size: 18px !important;
  white-space: nowrap !important;
}

/* Final capability zigzag guard: tablet and mobile keep the desktop left/right rhythm. */
@media (max-width: 1180px) {
  .scenario-grid {
    width: calc(100vw - 28px) !important;
    display: flex !important;
    flex-direction: column !important;
    gap: clamp(24px, 4.4vw, 42px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .scenario-card,
  .scenario-card:nth-child(odd),
  .scenario-card:nth-child(even),
  .scenario-card:nth-child(3),
  .scenario-card:nth-child(4) {
    width: min(64vw, 520px) !important;
    max-width: min(64vw, 520px) !important;
    margin-top: 0 !important;
  }

  .scenario-card:nth-child(odd),
  .scenario-card:nth-child(3) {
    align-self: flex-start !important;
  }

  .scenario-card:nth-child(even),
  .scenario-card:nth-child(4) {
    align-self: flex-end !important;
    margin-top: clamp(-48px, -5vw, -24px) !important;
  }
}

@media (max-width: 700px) {
  .scenario-grid {
    gap: 30px !important;
  }

  .scenario-card,
  .scenario-card:nth-child(odd),
  .scenario-card:nth-child(even),
  .scenario-card:nth-child(3),
  .scenario-card:nth-child(4) {
    width: min(82vw, 330px) !important;
    max-width: min(82vw, 330px) !important;
  }

  .scenario-card:nth-child(even),
  .scenario-card:nth-child(4) {
    margin-top: clamp(-42px, -8vw, -24px) !important;
  }

  .scenario-card:nth-child(3) {
    margin-top: clamp(-30px, -6vw, -18px) !important;
  }
}

/* Mobile capability card spacing: keep left/right rhythm without vertical overlap. */
@media (max-width: 700px) {
  .capability-section .scenario-grid {
    gap: 20px !important;
    row-gap: 20px !important;
  }

  .capability-section .scenario-card,
  .capability-section .scenario-card:nth-child(odd),
  .capability-section .scenario-card:nth-child(even),
  .capability-section .scenario-card:nth-child(3),
  .capability-section .scenario-card:nth-child(4) {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .capability-section .scenario-card:nth-child(odd),
  .capability-section .scenario-card:nth-child(3) {
    align-self: flex-start !important;
  }

  .capability-section .scenario-card:nth-child(even),
  .capability-section .scenario-card:nth-child(4) {
    align-self: flex-end !important;
  }
}

/* Mobile feature pin: keep the heading visible before the horizontal card pan. */
@media (max-width: 760px) {
  .demo-preview-section[data-feature-pan] .demo-preview-copy h2 {
    max-width: 100% !important;
    font-size: clamp(40px, 10.2vw, 48px) !important;
    line-height: .98 !important;
    overflow-wrap: break-word !important;
  }

  .demo-preview-section[data-feature-pan] .benchmark-section-inline {
    margin-top: clamp(48px, 8svh, 84px) !important;
  }
}

.model-layout-editor {
  position: fixed;
  right: clamp(14px, 3vw, 34px);
  bottom: clamp(14px, 4vh, 34px);
  z-index: 200;
  width: min(346px, calc(100vw - 28px));
  padding: 14px;
  color: #111;
  font-family: var(--body);
  font-size: 12px;
  line-height: 1.4;
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(5, 5, 5, .12);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .18);
  backdrop-filter: blur(18px);
}

.model-layout-editor strong {
  display: block;
  margin-bottom: 4px;
  font-size: 13px;
}

.model-layout-editor p {
  margin: 0 0 10px;
  color: rgba(17, 17, 17, .66);
}

.model-layout-editor code {
  display: block;
  min-height: 18px;
  margin-bottom: 10px;
  overflow: hidden;
  color: rgba(17, 17, 17, .72);
  font-family: var(--mono);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.model-layout-editor-controls {
  display: grid;
  gap: 7px;
  margin: 0 0 10px;
  padding: 10px;
  background: rgba(17, 17, 17, .055);
  border: 1px solid rgba(17, 17, 17, .08);
}

.model-layout-editor-controls label {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 42px;
  gap: 8px;
  align-items: center;
  color: rgba(17, 17, 17, .72);
  font-size: 11px;
  font-weight: 760;
}

.model-layout-editor-controls input[type="range"] {
  width: 100%;
  min-width: 0;
  accent-color: var(--meadow-green);
}

.model-layout-editor-controls output {
  color: rgba(17, 17, 17, .66);
  font-family: var(--mono);
  font-size: 10px;
  text-align: right;
}

.model-layout-editor-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.model-layout-editor button {
  min-height: 32px;
  padding: 0 12px;
  color: #fff;
  font: 700 12px/1 var(--body);
  background: var(--meadow-green);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
}

.model-layout-editor button[data-reset-model-layout] {
  color: rgba(17, 17, 17, .72);
  background: rgba(17, 17, 17, .08);
}

.capability-section.has-work-document-layout:not(.is-work-plush-editing) .work-plush-canvas {
  position: fixed !important;
  inset: 0 !important;
  top: 0 !important;
  right: auto !important;
  bottom: auto !important;
  left: 0 !important;
  z-index: 1 !important;
  display: block !important;
  width: 100vw !important;
  height: 100dvh !important;
  min-width: 100vw !important;
  min-height: 100dvh !important;
  pointer-events: none !important;
  opacity: .96 !important;
}

.capability-section.has-work-document-layout:not(.is-work-plush-editing) .capability-intro,
.capability-section.has-work-document-layout:not(.is-work-plush-editing) .scenario-grid {
  position: relative;
  z-index: 2;
}

.capability-section.is-work-plush-editing .work-plush-canvas {
  position: absolute !important;
  inset: 0 !important;
  top: 0 !important;
  right: auto !important;
  bottom: auto !important;
  left: 0 !important;
  z-index: 180 !important;
  display: block !important;
  width: 100% !important;
  height: var(--work-editor-canvas-height, 100dvh) !important;
  min-width: 100% !important;
  min-height: var(--work-editor-canvas-height, 100dvh) !important;
  pointer-events: auto !important;
  opacity: .96 !important;
  cursor: grab;
  touch-action: none;
}

.capability-section.is-work-plush-editing .work-plush-canvas.is-dragging {
  cursor: grabbing;
}

.site-footer.is-footer-model-editing .footer-model {
  position: fixed;
  inset: 0;
  z-index: 180;
  width: 100vw;
  height: 100dvh;
  pointer-events: auto;
}

.site-footer.is-footer-model-editing .footer-model-canvas {
  position: fixed !important;
  inset: 0 !important;
  width: 100vw !important;
  height: 100dvh !important;
  min-width: 100vw !important;
  min-height: 100dvh !important;
  transform: none !important;
  pointer-events: auto;
  opacity: 1 !important;
  cursor: grab;
  touch-action: none;
}

.site-footer.is-footer-model-editing .footer-model-canvas.is-dragging {
  cursor: grabbing;
}
