:root {
  --ink: #1e1e2f;
  --ink-soft: #343447;
  --muted: #6f6f7d;
  --paper: #ffffff;
  --surface: #f5f5f8;
  --surface-strong: #ececf2;
  --line: #e2e2e9;
  --violet: #7c6cff;
  --violet-strong: #6254ed;
  --violet-soft: #ede9ff;
  --success: #2d9a67;
  --shell: min(1240px, calc(100vw - 64px));
  --display: "Poppins", "HarmonyOS Sans SC", "PingFang SC", sans-serif;
  --body: "Inter", "HarmonyOS Sans SC", "PingFang SC", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

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

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(124, 108, 255, 0.38);
  outline-offset: 4px;
}

::selection {
  color: inherit;
  background: rgba(124, 108, 255, 0.22);
}

h1,
h2,
h3 {
  text-wrap: balance;
}

p,
li {
  text-wrap: pretty;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--paper);
  background: var(--ink);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: relative;
  z-index: 100;
  width: 100%;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(226, 226, 233, 0.8);
  backdrop-filter: blur(16px);
}

.site-header__inner {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
  align-items: center;
  width: var(--shell);
  min-height: 84px;
  margin-inline: auto;
}

.wordmark {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-self: start;
  line-height: 1;
}

.wordmark__name {
  font-family: var(--display);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.045em;
}

.wordmark__tagline {
  margin-top: 7px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-nav a,
.status-link,
.menu-toggle {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 600;
}

.site-nav a {
  position: relative;
  padding-block: 12px;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: var(--violet);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.status-link {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 9px;
  min-height: 40px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  transition:
    color 160ms ease,
    border-color 160ms ease,
    background-color 160ms ease,
    scale 140ms ease-out;
}

.status-link:hover {
  color: var(--violet-strong);
  background: var(--violet-soft);
  border-color: #cfc7ff;
}

.status-link__dot {
  width: 7px;
  height: 7px;
  background: var(--violet);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(124, 108, 255, 0.13);
}

.menu-toggle {
  display: none;
  justify-self: end;
  min-width: 64px;
  min-height: 40px;
  padding: 0 14px;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  transition:
    border-color 140ms ease-out,
    background-color 140ms ease-out,
    scale 140ms ease-out;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 64px;
  background: var(--paper);
}

.hero__content {
  position: relative;
  --hero-copy-opacity: 1;
  --hero-copy-y: 0px;
  --hero-frame-scale: 1;
  --hero-frame-y: 0px;
  text-align: center;
}

.hero__copy {
  position: relative;
  z-index: 2;
  opacity: var(--hero-copy-opacity);
  transform: translate3d(0, var(--hero-copy-y), 0);
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  color: var(--violet-strong);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero__eyebrow img {
  filter: invert(49%) sepia(72%) saturate(2009%) hue-rotate(219deg) brightness(100%);
}

.hero h1 {
  max-width: 920px;
  margin: 0 auto;
  font-family: var(--display);
  font-size: clamp(64px, 6.3vw, 102px);
  font-weight: 600;
  line-height: 0.99;
  letter-spacing: -0.065em;
}

.hero h1 span {
  color: var(--violet);
}

.hero__lead {
  max-width: 650px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  transition:
    color 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease,
    scale 140ms ease-out;
}

.button:active,
.status-link:active,
.menu-toggle:active {
  scale: 0.96;
}

.button--primary {
  color: var(--paper);
  background: var(--ink);
  border-color: var(--ink);
}

.button--primary:hover {
  background: var(--violet-strong);
  border-color: var(--violet-strong);
}

.hero__intent-button {
  min-width: 160px;
}

.button--secondary {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--line);
}

.button--secondary:hover {
  color: var(--violet-strong);
  background: var(--violet-soft);
  border-color: #cfc7ff;
}

.hero__status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.hero__status > span {
  width: 7px;
  height: 7px;
  background: var(--success);
  border-radius: 50%;
}

.hero-keyword {
  --intake-x: 0px;
  --intake-y: 0px;
  --intake-scale: 1;
  --intake-opacity: 1;
  --intake-rotation: 0deg;
  --intake-tilt-x: 0deg;
  --intake-tilt-y: 0deg;
  position: absolute;
  z-index: 1;
  display: grid;
  width: var(--intake-size, 96px);
  aspect-ratio: 1;
  place-items: center;
  background: #fbfbfc;
  border: 1px solid rgba(30, 30, 47, 0.08);
  border-radius: 26px;
  box-shadow:
    0 24px 48px rgba(30, 30, 47, 0.12),
    0 7px 16px rgba(30, 30, 47, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
  opacity: var(--intake-opacity);
  transform: translate3d(var(--intake-x), var(--intake-y), 0) perspective(700px) rotateX(var(--intake-tilt-x))
    rotateY(var(--intake-tilt-y)) rotateZ(var(--intake-rotation)) scale(var(--intake-scale));
  transform-origin: center;
  will-change: transform, opacity;
}

.hero-keyword img {
  display: block;
  width: 42%;
  height: 42%;
  object-fit: contain;
  opacity: 0.82;
}

.hero-keyword--one {
  --intake-size: 94px;
  top: 132px;
  left: 4.5%;
}

.hero-keyword--two {
  --intake-size: 102px;
  top: 358px;
  left: 7.5%;
}

.hero-keyword--three {
  --intake-size: 98px;
  top: 138px;
  right: 4.5%;
}

.hero-keyword--four {
  --intake-size: 90px;
  top: 366px;
  right: 8%;
}

.product-frame {
  position: relative;
  z-index: 3;
  overflow: hidden;
  width: min(1120px, 100%);
  margin: 42px auto 0;
  background: var(--paper);
  border: 1px solid #d9d9e2;
  border-radius: 24px;
  box-shadow: 0 30px 90px rgba(30, 30, 47, 0.15);
  text-align: left;
  transform: translate3d(0, var(--hero-frame-y), 0) scale(var(--hero-frame-scale));
  transform-origin: top center;
}

.product-frame::before {
  position: absolute;
  z-index: -1;
  inset: -1px;
  background: var(--violet-soft);
  content: "";
}

.product-frame > img {
  display: block;
  width: 100%;
  height: auto;
  clip-path: inset(0 0 3px 0 round 23px);
}

.principle-strip {
  color: var(--paper);
  background: var(--ink);
  border-top: 1px solid var(--ink);
}

.principle-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.principle-strip__inner span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 76px;
  padding: 0 24px;
  color: #dadae4;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.principle-strip__inner span:not(:last-child)::after {
  position: absolute;
  top: 26px;
  right: 0;
  width: 1px;
  height: 24px;
  background: #3a3a4e;
  content: "";
}

.motion-manifesto {
  position: relative;
  min-height: 280vh;
  color: var(--paper);
  background: var(--ink);
}

.motion-manifesto__sticky {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  min-height: 100vh;
  overflow: hidden;
}

.motion-manifesto__inner {
  position: relative;
  padding-block: 100px;
}

.motion-manifesto h2,
.motion-manifesto__statement {
  max-width: 1050px;
  margin: 0;
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.05em;
}

.motion-manifesto h2 {
  font-size: clamp(56px, 5.4vw, 88px);
  line-height: 1.08;
}

.motion-manifesto__statement {
  margin-top: 42px;
  color: var(--paper);
  font-size: clamp(28px, 3vw, 48px);
  line-height: 1.35;
}

[data-manifesto-word] {
  opacity: 0.16;
  transition: opacity 100ms linear;
}

.motion-manifesto__meter {
  position: absolute;
  right: 0;
  bottom: 34px;
  left: 0;
  height: 1px;
  overflow: hidden;
  background: #3d3d52;
}

.motion-manifesto__meter span {
  display: block;
  width: var(--manifesto-progress, 0%);
  height: 100%;
  background: var(--violet);
  transform-origin: left;
}

.section {
  padding: 144px 0;
}

.section-heading {
  max-width: 900px;
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.6fr);
  align-items: end;
  gap: 80px;
  max-width: none;
}

.section-index {
  margin: 0 0 20px;
  color: var(--violet-strong);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.section-heading h2,
.trust h2,
.status h2,
.faq h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(46px, 4.3vw, 72px);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.055em;
}

.section-heading > p:last-child,
.section-heading--split > p,
.trust__lead,
.status-panel__copy > p {
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.section-heading--split > p {
  margin: 0 0 4px;
}

.workflow {
  background: var(--paper);
}

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 90px 0 0;
  padding: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.workflow-steps li {
  position: relative;
  min-height: 290px;
  padding: 34px 34px 34px 0;
}

.workflow-steps li:not(:first-child) {
  padding-left: 34px;
  border-left: 1px solid var(--line);
}

.workflow-steps li > span {
  color: var(--violet-strong);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
}

.workflow-steps h3 {
  margin: 74px 0 14px;
  font-family: var(--display);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.035em;
}

.workflow-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.product-story {
  background: var(--surface);
}

.story-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
  margin-top: 78px;
}

.story-card {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.story-card__copy {
  position: relative;
  z-index: 1;
  padding: 42px 44px 34px;
}

.story-card__copy > span {
  color: var(--violet-strong);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.story-card h3 {
  max-width: 570px;
  margin: 13px 0 10px;
  font-family: var(--display);
  font-size: 29px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.04em;
}

.story-card p {
  max-width: 570px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.story-card--wide {
  grid-column: 1 / -1;
  min-height: 720px;
}

.story-card--wide > img {
  width: calc(100% - 88px);
  margin: 8px 44px 0;
  border: 1px solid var(--line);
  border-radius: 13px 13px 0 0;
  box-shadow: 0 26px 60px rgba(30, 30, 47, 0.11);
}

.story-card--dark {
  min-height: 670px;
  color: var(--paper);
  background: var(--ink);
  border-color: var(--ink);
}

.story-card--dark .story-card__copy > span {
  color: #bfb7ff;
}

.story-card--dark p {
  color: #bcbcca;
}

.story-card--dark > img {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 88%;
  max-width: none;
  border: 1px solid #424258;
  border-bottom: 0;
  border-radius: 13px 13px 0 0;
  transform: translateX(-50%);
}

.story-card--compact {
  display: flex;
  min-height: 325px;
  padding-top: 4px;
}

.story-card--compact .story-card__copy {
  align-self: end;
}

.story-card__icon {
  position: absolute;
  top: 42px;
  left: 44px;
  width: 42px;
  height: 42px;
  padding: 9px;
  background: var(--violet-soft);
  border-radius: 10px;
  filter: invert(49%) sepia(72%) saturate(2009%) hue-rotate(219deg) brightness(100%);
}

.story-card--violet {
  color: var(--paper);
  background: var(--violet-strong);
  border-color: var(--violet-strong);
}

.story-card--violet .story-card__copy > span,
.story-card--violet p {
  color: #e9e6ff;
}

.story-card--violet .story-card__icon {
  background: rgba(255, 255, 255, 0.15);
  filter: brightness(0) invert(1);
}

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

.trust__layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 86px;
}

.section-index--light {
  color: #bfb7ff;
}

.trust__lead {
  color: #bcbcca;
}

.trust-list {
  display: grid;
  gap: 0;
  margin: 50px 0 0;
  padding: 0;
  border-top: 1px solid #414155;
  list-style: none;
}

.trust-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid #414155;
}

.trust-list__icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  background: #303045;
  border-radius: 9px;
}

.trust-list__icon img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

.trust-list strong,
.trust-list span {
  display: block;
}

.trust-list strong {
  margin: 1px 0 7px;
  font-size: 14px;
}

.trust-list span {
  color: #a9a9b9;
  font-size: 13px;
  line-height: 1.65;
}

.trust__visual {
  overflow: hidden;
  margin: 0;
  background: #29293c;
  border: 1px solid #45455c;
  border-radius: 20px;
}

.trust__visual > img {
  width: 100%;
  min-height: 540px;
  object-fit: cover;
  object-position: center;
}

.trust__visual figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 74px;
  padding: 0 26px;
  border-top: 1px solid #45455c;
}

.trust__visual figcaption span {
  color: #a9a9b9;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.trust__visual figcaption strong {
  font-size: 13px;
}

.audience-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 86px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.audience-list article {
  position: relative;
  min-height: 330px;
  padding: 38px 36px;
}

.audience-list article:not(:last-child) {
  border-right: 1px solid var(--line);
}

.audience-list img {
  width: 36px;
  height: 36px;
  filter: invert(49%) sepia(72%) saturate(2009%) hue-rotate(219deg) brightness(100%);
}

.audience-list article > span {
  position: absolute;
  top: 42px;
  right: 36px;
  color: #aaaab6;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
}

.audience-list h3 {
  margin: 48px 0 13px;
  font-family: var(--display);
  font-size: 25px;
  font-weight: 600;
  letter-spacing: -0.035em;
}

.audience-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.status {
  padding-top: 0;
}

.status-panel {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  align-items: end;
  gap: 80px;
  padding: 78px 80px;
  background: var(--violet-soft);
  border: 1px solid #ddd7ff;
  border-radius: 22px;
}

.status h2 {
  color: var(--violet-strong);
  font-size: clamp(54px, 5vw, 82px);
}

.status-panel__copy > p {
  margin-top: 0;
  color: var(--ink-soft);
}

.status-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 27px;
}

.status-panel .button--secondary {
  background: transparent;
  border-color: #cfc7ff;
}

.faq {
  padding-top: 0;
}

.faq__layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 100px;
}

.faq-list {
  border-top: 1px solid var(--ink);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 27px 48px 27px 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 4px;
  color: var(--violet-strong);
  content: "+";
  font-family: var(--display);
  font-size: 25px;
  font-weight: 500;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 700px;
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

[data-scroll-media] {
  --media-scale: 1;
  --media-shift: 0px;
}

.story-card--wide > img,
.trust__visual > img {
  transform: translate3d(0, var(--media-shift), 0) scale(var(--media-scale));
  transform-origin: center;
}

.story-card--dark > img {
  transform: translate3d(-50%, var(--media-shift), 0) scale(var(--media-scale));
  transform-origin: center;
}

html.motion-ready [data-reveal] {
  opacity: 0;
  translate: 0 24px;
  transition:
    opacity 620ms cubic-bezier(0.22, 1, 0.36, 1),
    translate 620ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

html.motion-ready [data-reveal].is-visible {
  opacity: 1;
  translate: 0 0;
}

.motion-dock {
  --dock-progress: 0%;
  --dock-y: calc(100vh - 94px);
  position: fixed;
  z-index: 90;
  top: 18px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 3px;
  min-height: 54px;
  padding: 5px;
  color: #c8c8d2;
  background: rgba(30, 30, 47, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  box-shadow:
    0 18px 46px rgba(30, 30, 47, 0.22),
    0 3px 10px rgba(30, 30, 47, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-50%, calc(var(--dock-y) + 78px), 0);
  transition:
    opacity 220ms ease-out,
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
  backdrop-filter: blur(18px);
}

.motion-dock[data-visible="true"] {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(-50%, var(--dock-y), 0);
}

.motion-dock[data-position="top"] {
  --dock-y: 0px;
}

.motion-dock__progress {
  position: absolute;
  bottom: 3px;
  left: 12px;
  width: var(--dock-progress);
  max-width: calc(100% - 24px);
  height: 2px;
  background: var(--violet);
  border-radius: 999px;
  transition: width 120ms linear;
}

.motion-dock a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 86px;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  transition:
    color 140ms ease-out,
    background-color 140ms ease-out,
    scale 140ms ease-out;
}

.motion-dock a span {
  color: #8f8fa1;
  font-size: 9px;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.05em;
}

.motion-dock a:hover,
.motion-dock a:focus-visible,
.motion-dock a[aria-current="location"] {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.09);
}

.motion-dock a[aria-current="location"] span {
  color: #c7c0ff;
}

.motion-dock a:active {
  scale: 0.96;
}

.site-footer {
  color: #bcbcca;
  background: var(--ink);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 138px;
}

.wordmark--footer {
  color: var(--paper);
}

.wordmark--footer .wordmark__tagline {
  color: #9797a8;
}

.site-footer p {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.04em;
}

.site-footer p:last-child {
  justify-self: end;
}

.site-footer__legal {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 7px;
}

.site-footer__legal a {
  color: inherit;
  transition: color 140ms ease-out;
}

.site-footer__legal a:hover,
.site-footer__legal a:focus-visible {
  color: var(--paper);
}

@media (prefers-reduced-motion: no-preference) {
  .hero__eyebrow,
  .hero h1,
  .hero__lead,
  .hero__actions,
  .hero__status {
    opacity: 0;
    animation: reveal 700ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }

  .hero h1 {
    animation-delay: 80ms;
  }

  .hero__lead {
    animation-delay: 140ms;
  }

  .hero__actions,
  .hero__status {
    animation-delay: 200ms;
  }

  html.motion-ready .hero__copy,
  html.motion-ready .hero-keyword,
  html.motion-ready .product-frame,
  html.motion-ready [data-scroll-media] > img {
    will-change: transform;
  }
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1120px) {
  :root {
    --shell: min(100% - 48px, 960px);
  }

  .site-header__inner {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .status-link {
    margin-right: 84px;
  }

  .menu-toggle {
    position: absolute;
    right: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav.is-open {
    position: fixed;
    top: 84px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 18px 24px 28px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 45px rgba(30, 30, 47, 0.12);
  }

  .site-nav.is-open a {
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
    font-size: 15px;
  }

  .hero-keyword {
    display: none;
  }

  .section-heading--split,
  .trust__layout,
  .faq__layout {
    gap: 54px;
  }

  .story-card--wide {
    min-height: 620px;
  }

  .story-card--dark {
    min-height: 590px;
  }

  .trust__visual > img {
    min-height: 440px;
  }

  .status-panel {
    gap: 50px;
    padding: 66px 58px;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: calc(100vw - 40px);
  }

  .site-header__inner {
    min-height: 74px;
  }

  .site-nav.is-open {
    top: 74px;
  }

  .status-link {
    display: none;
  }

  .hero {
    padding-top: 52px;
  }

  .hero h1 {
    font-size: clamp(52px, 11.5vw, 76px);
  }

  .hero__lead {
    max-width: 590px;
    font-size: 16px;
  }

  .product-frame {
    margin-top: 38px;
    border-radius: 18px;
  }

  .product-frame > img {
    clip-path: inset(0 0 3px 0 round 17px);
  }

  .principle-strip__inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .principle-strip__inner span:nth-child(2)::after {
    display: none;
  }

  .principle-strip__inner span:nth-child(-n + 2) {
    border-bottom: 1px solid #3a3a4e;
  }

  .section {
    padding: 104px 0;
  }

  .motion-manifesto {
    min-height: 250vh;
  }

  .motion-manifesto__inner {
    padding-block: 82px;
  }

  .motion-manifesto h2 {
    font-size: clamp(48px, 8.5vw, 64px);
  }

  .motion-manifesto__statement {
    font-size: clamp(26px, 4.6vw, 36px);
  }

  .section-heading--split,
  .trust__layout,
  .faq__layout,
  .status-panel {
    grid-template-columns: 1fr;
  }

  .section-heading--split {
    gap: 30px;
  }

  .section-heading--split > p {
    max-width: 640px;
  }

  .workflow-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .workflow-steps li {
    min-height: 250px;
    padding: 30px;
    border-bottom: 1px solid var(--line);
  }

  .workflow-steps li:first-child,
  .workflow-steps li:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }

  .workflow-steps h3 {
    margin-top: 54px;
  }

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

  .story-card--wide {
    min-height: 540px;
  }

  .story-card--dark {
    min-height: 680px;
  }

  .story-card--compact {
    min-height: 300px;
  }

  .trust__layout {
    gap: 60px;
  }

  .audience-list {
    grid-template-columns: 1fr;
  }

  .audience-list article {
    min-height: 270px;
  }

  .audience-list article:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .audience-list h3 {
    margin-top: 40px;
  }

  .status-panel {
    align-items: start;
    gap: 46px;
  }

  .status-panel__copy {
    max-width: 620px;
  }

  .faq__layout {
    gap: 56px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr auto;
    gap: 24px;
    padding: 36px 0;
  }

  .site-footer p:first-of-type {
    display: none;
  }
}

@media (max-width: 560px) {
  :root {
    --shell: calc(100vw - 32px);
  }

  .site-header__inner {
    min-height: 68px;
  }

  .site-nav.is-open {
    top: 68px;
    padding-inline: 16px;
  }

  .menu-toggle {
    right: 16px;
  }

  .wordmark__name {
    font-size: 19px;
  }

  .wordmark__tagline {
    font-size: 8px;
  }

  .hero {
    padding-top: 42px;
  }

  .hero__eyebrow {
    margin-bottom: 20px;
    font-size: 10px;
    letter-spacing: 0.09em;
  }

  .hero-keyword {
    display: grid;
    width: var(--intake-size, 64px);
    border-radius: 17px;
    box-shadow:
      0 14px 26px rgba(30, 30, 47, 0.11),
      0 4px 9px rgba(30, 30, 47, 0.07),
      inset 0 1px 0 rgba(255, 255, 255, 0.96);
  }

  .hero-keyword img {
    width: 43%;
    height: 43%;
  }

  .hero-keyword--one {
    --intake-size: 48px;
    top: 102px;
    left: -30px;
  }

  .hero-keyword--two {
    --intake-size: 52px;
    top: 352px;
    left: -28px;
  }

  .hero-keyword--three {
    --intake-size: 50px;
    top: 112px;
    right: -32px;
  }

  .hero-keyword--four {
    --intake-size: 46px;
    top: 360px;
    right: -26px;
  }

  .hero h1 {
    font-size: clamp(42px, 11.3vw, 46px);
    line-height: 1.03;
    letter-spacing: -0.06em;
  }

  .hero__lead {
    max-width: 330px;
    margin-top: 22px;
    font-size: 14px;
    line-height: 1.7;
  }

  .hero__actions {
    flex-direction: column;
    gap: 9px;
    margin-top: 25px;
  }

  .button {
    width: 100%;
  }

  .hero__status {
    align-items: flex-start;
    max-width: 280px;
    margin-inline: auto;
    line-height: 1.6;
  }

  .hero__status > span {
    flex: 0 0 auto;
    margin-top: 6px;
  }

  .product-frame {
    width: calc(100% + 32px);
    margin-top: 30px;
    margin-left: -16px;
    border-right: 0;
    border-left: 0;
    border-radius: 12px;
  }

  .product-frame > img {
    clip-path: inset(0 0 3px 0 round 11px);
  }

  .principle-strip__inner span {
    min-height: 62px;
    padding: 0 10px;
    font-size: 10px;
  }

  .section {
    padding: 82px 0;
  }

  .motion-manifesto {
    min-height: 230vh;
  }

  .motion-manifesto__inner {
    padding-block: 68px 112px;
  }

  .motion-manifesto h2 {
    font-size: 40px;
    line-height: 1.12;
  }

  .motion-manifesto__statement {
    margin-top: 32px;
    font-size: 24px;
    line-height: 1.42;
  }

  .motion-manifesto__meter {
    bottom: 82px;
  }

  .section-index {
    margin-bottom: 15px;
  }

  .section-heading h2,
  .trust h2,
  .status h2,
  .faq h2 {
    font-size: 40px;
  }

  .section-heading > p:last-child,
  .section-heading--split > p,
  .trust__lead,
  .status-panel__copy > p {
    font-size: 14px;
    line-height: 1.75;
  }

  .workflow-steps {
    grid-template-columns: 1fr;
    margin-top: 55px;
  }

  .workflow-steps li,
  .workflow-steps li:not(:first-child) {
    min-height: 210px;
    padding: 27px 0;
    border-left: 0;
  }

  .workflow-steps h3 {
    margin-top: 42px;
  }

  .story-grid {
    gap: 14px;
    margin-top: 52px;
  }

  .story-card,
  .story-card--wide,
  .story-card--dark,
  .story-card--compact {
    min-height: 0;
    border-radius: 14px;
  }

  .story-card__copy {
    padding: 30px 26px 25px;
  }

  .story-card h3 {
    font-size: 23px;
  }

  .story-card--wide > img {
    width: calc(100% - 32px);
    margin: 8px 16px 0;
  }

  .story-card--dark > img {
    position: relative;
    left: auto;
    width: calc(100% - 32px);
    margin: 8px 16px 0;
    transform: none;
  }

  .motion-dock {
    --dock-y: 0px;
    top: auto;
    right: 16px;
    bottom: 12px;
    left: 16px;
    width: auto;
    min-height: 56px;
    transform: translate3d(0, calc(100% + 28px), 0);
  }

  .motion-dock[data-visible="true"] {
    transform: translate3d(0, 0, 0);
  }

  .motion-dock a {
    flex: 1;
    min-width: 0;
    padding-inline: 8px;
    font-size: 11px;
  }

  .motion-dock a span {
    display: none;
  }

  .story-card--compact {
    min-height: 285px;
  }

  .story-card__icon {
    top: 30px;
    left: 26px;
  }

  .trust__visual {
    border-radius: 14px;
  }

  .trust__visual > img {
    min-height: 260px;
  }

  .trust__visual figcaption {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    min-height: 88px;
    gap: 7px;
  }

  .trust-list li {
    grid-template-columns: 36px 1fr;
    gap: 14px;
  }

  .trust-list__icon {
    width: 36px;
    height: 36px;
  }

  .trust-list__icon img {
    width: 18px;
    height: 18px;
  }

  .audience-list {
    margin-top: 55px;
  }

  .audience-list article {
    min-height: 250px;
    padding: 30px 0;
  }

  .audience-list article > span {
    top: 34px;
    right: 0;
  }

  .audience-list h3 {
    margin-top: 32px;
  }

  .status {
    padding-top: 0;
  }

  .status-panel {
    width: 100%;
    padding: 52px 26px;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .status-panel__actions {
    flex-direction: column;
  }

  .faq {
    padding-top: 0;
  }

  .faq-list summary {
    padding-block: 23px;
    font-size: 15px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 24px;
    min-height: 0;
    padding: 42px 0;
  }

  .site-footer p:last-child {
    justify-self: start;
  }

  .site-footer__legal {
    align-items: flex-start;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .motion-manifesto {
    min-height: auto;
  }

  .motion-manifesto__sticky {
    position: relative;
    min-height: auto;
  }

  [data-manifesto-word] {
    opacity: 1 !important;
  }

  .motion-manifesto__meter span {
    width: 100%;
  }

  html.motion-ready [data-reveal] {
    opacity: 1;
    translate: 0 0;
  }

  .hero__copy,
  .hero-keyword,
  .product-frame {
    transform: none !important;
  }

  [data-scroll-media] {
    --media-scale: 1 !important;
    --media-shift: 0px !important;
  }

  .story-card--dark > img {
    transform: translateX(-50%) !important;
  }
}

@media (max-width: 560px) and (prefers-reduced-motion: reduce) {
  .story-card--dark > img {
    transform: none !important;
  }
}
