html:has(body[data-page="home"]) {
  --home-wash: 0;
  --home-canvas: color-mix(in srgb, var(--ink) calc(100% - (var(--home-wash) * 100%)), var(--brand));
  background: var(--home-canvas);
}

body[data-page="home"] {
  --home-max: 1920px;
  --home-gap: clamp(18px, 2.5vw, 48px);
  --home-section: clamp(110px, 12vw, 220px);
  --home-deep: #0c0c0e;
  min-width: 0;
  color: var(--paper);
  background: var(--home-canvas);
  letter-spacing: 0;
}

body[data-page="home"] main {
  position: relative;
  overflow: visible;
}

body[data-page="home"] main > section:not(.home-hero),
body[data-page="home"] footer.home-final {
  position: relative;
  z-index: 10;
  isolation: isolate;
}

body[data-page="home"] main > section.home-domains {
  min-height: 100svh;
}

body[data-page="home"] main > section.home-loop {
  min-height: 130svh;
}

body[data-page="home"] main > section.home-method {
  min-height: 108svh;
}

body[data-page="home"] footer.home-final {
  min-height: 100svh;
}

body[data-page="home"] main > section.home-domains,
body[data-page="home"] main > section.home-method {
  z-index: auto;
  isolation: auto;
}

body[data-page="home"] main > section > .home-shell,
body[data-page="home"] footer.home-final > .home-shell,
body[data-page="home"] footer.home-final > .site-footer {
  position: relative;
  z-index: 12;
}

body[data-subject-paused="true"] .liquid-core-stage {
  display: none;
}

.liquid-core-stage {
  position: fixed;
  z-index: 40;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
  isolation: isolate;
}

.liquid-core-stage .liquid-core-canvas,
.liquid-core-stage .liquid-core-fallback {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* Keep the fixed subject on its own compositing layer without asking the
   browser to repaint the whole page while the document scrolls. */
.liquid-core-stage .liquid-core-canvas {
  contain: strict;
  will-change: transform;
}

.liquid-core-stage .liquid-core-fallback {
  opacity: .72;
  object-fit: contain;
  transform: translate(23%, 0) scale(.86);
}

.liquid-core-stage.is-webgl-ready .liquid-core-fallback { display: none; }
.liquid-core-stage.is-webgl-fallback .liquid-core-canvas { display: none; }
.liquid-core-stage.is-scene-paused { opacity: .72; }

body[data-page="home"] main > section:not(.home-domains)::before,
body[data-page="home"] footer.home-final::before {
  z-index: -1;
}

body[data-page="home"] .site-header {
  z-index: 70;
  mix-blend-mode: normal;
}

body[data-page="home"] .mobile-menu { z-index: 60; }
body[data-page="home"] .scroll-progress { z-index: 90; }

body[data-page="home"] .site-header.is-scrolled {
  background: color-mix(in srgb, var(--home-canvas) 90%, transparent);
}

body[data-page="home"] .header-cta {
  color: color-mix(in srgb, var(--paper) calc((1 - var(--home-wash)) * 100%), var(--ink));
  background: color-mix(in srgb, var(--brand) calc((1 - var(--home-wash)) * 100%), var(--paper));
}

body[data-page="home"] .header-cta:hover {
  background: color-mix(in srgb, var(--brand-soft) calc((1 - var(--home-wash)) * 100%), var(--paper));
}

body.intro-scroll-locked {
  overflow: hidden;
  overscroll-behavior: none;
}

body.intro-scroll-locked .site-header {
  background: transparent;
}

body.intro-scroll-locked .scroll-progress {
  opacity: 0;
}

.home-shell {
  width: min(var(--home-max), calc(100% - (var(--pad) * 2)));
  margin-inline: auto;
}

.home-shell > *,
.home-statement > *,
.home-loop-heading > *,
.home-flow-grid > *,
.home-final-layout > * {
  min-width: 0;
}

.home-display-title {
  margin: 0;
  font: 700 clamp(56px, 7.4vw, 142px)/.91 var(--display);
  letter-spacing: -.065em;
  text-wrap: balance;
}

.home-display-title em,
.home-final-title em {
  color: color-mix(in srgb, var(--brand) calc(100% - (var(--home-wash) * 100%)), var(--paper));
  font-style: normal;
}

/* Statement and flow headings use a slightly smaller scale so two-line titles never wrap to a third line.
   text-wrap: balance mis-breaks lines that already use an explicit <br>, so it is disabled here. */
.home-statement .home-display-title,
.home-loop-heading .home-display-title {
  font-size: clamp(48px, 5.8vw, 112px);
  text-wrap: wrap;
}

.home-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  min-width: 220px;
  min-height: 52px;
  padding: 16px 18px;
  border: 1px solid var(--line-dark);
  color: var(--paper);
  background: transparent;
  font: 400 11px/1 var(--mono);
  letter-spacing: .04em;
  translate: var(--magnet-x, 0) var(--magnet-y, 0);
  transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s var(--ease), translate .18s var(--ease);
}

.home-button span {
  font-size: 17px;
}

.home-button-contact {
  justify-content: center;
}

.home-button:hover {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--paper);
  transform: translateY(-2px);
}

.home-button:active {
  transform: translateY(0) scale(.985);
}

.home-button-primary {
  color: var(--paper);
  background: var(--brand);
  border-color: var(--brand);
}

.home-button-primary:hover {
  color: var(--paper);
  background: var(--brand-soft);
  border-color: var(--brand-soft);
}

.home-text-link {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding-block: 9px;
  border-bottom: 1px solid rgba(var(--paper-rgb), .36);
  color: var(--paper);
  font: 400 11px/1 var(--mono);
  letter-spacing: .04em;
  transition: gap .25s var(--ease), color .25s ease, border-color .25s ease;
}

.home-text-link:hover {
  gap: 20px;
  color: var(--blue);
  border-color: var(--blue);
}

/* Hero */
.home-hero {
  position: relative;
  height: 100svh;
  min-height: 640px;
  isolation: isolate;
  overflow: visible;
  background: var(--ink);
  perspective: 1600px;
}

.home-hero-backdrop {
  position: absolute;
  z-index: 0;
  inset: 0 0 -8vh;
  overflow: hidden;
  pointer-events: none;
}

.home-hero-terrain-canvas,
.home-hero-backdrop::after {
  position: absolute;
  inset: 0;
}

.home-hero-terrain-canvas { contain: strict; }

.home-hero-terrain-canvas {
  z-index: 0;
  width: 100%;
  height: 100%;
  opacity: .82;
}

.home-hero-backdrop::after {
  z-index: 0;
  content: '';
  background:
    linear-gradient(90deg, var(--ink) 0%, rgba(var(--ink-rgb), .72) 5%, transparent 19%, transparent 81%, rgba(var(--ink-rgb), .72) 95%, var(--ink) 100%),
    radial-gradient(ellipse 108% 62% at 50% -8%, var(--ink) 0%, rgba(var(--ink-rgb), .92) 34%, rgba(var(--ink-rgb), .46) 66%, transparent 100%),
    radial-gradient(ellipse 112% 50% at 50% 108%, var(--ink) 0%, rgba(var(--ink-rgb), .86) 38%, rgba(var(--ink-rgb), .32) 72%, transparent 100%),
    radial-gradient(ellipse 74% 66% at 54% 43%, transparent 30%, rgba(var(--ink-rgb), .14) 66%, rgba(var(--ink-rgb), .76) 100%);
  pointer-events: none;
}

.home-hero-media { display: none; }

.liquid-core-canvas {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  outline: 0;
}

.liquid-core-fallback {
  transform-origin: 50% 50%;
}


.home-hero-layout {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  min-height: 640px;
  padding: clamp(92px, 13vh, 110px) 0 clamp(180px, 24vh, 280px);
  isolation: isolate;
}

.home-hero-cursor {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  display: none;
  width: 120px;
  height: 120px;
  margin: -60px 0 0 -60px;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-80px, -80px, 0) scale(0);
  will-change: transform, opacity;
}

.home-hero-cursor-disk {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 10px 28px rgba(var(--brand-rgb), .32);
  transform: rotate(var(--hero-cursor-rot, 0deg));
}

.home-hero-cursor svg {
  width: 44px;
  height: 44px;
}

@media (hover: hover) and (pointer: fine) {
  .home-hero-layout {
    transform: translate3d(calc(var(--hero-look-x, 0) * -12px), 0, 0) rotateY(calc(var(--hero-look-x, 0) * 1.6deg));
    transform-style: preserve-3d;
    will-change: transform;
  }
}

@media (hover: hover) and (pointer: fine) {
  @media (prefers-reduced-motion: no-preference) {
    .home-hero { cursor: none; }
    .home-hero-cursor { display: block; }
  }
}

.home-hero-kicker {
  display: flex;
  align-items: center;
  gap: 13px;
  width: min(570px, 46vw);
  color: rgba(var(--paper-rgb), .56);
  font: 400 10px/1 var(--mono);
  letter-spacing: .08em;
}

.home-hero-kicker i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 14px var(--blue);
}

.home-hero-kicker b {
  margin-left: auto;
  color: var(--brand);
  font-weight: 400;
}

.home-hero-title {
  position: relative;
  z-index: 3;
  display: block;
  width: 100%;
  margin: 0;
  color: #fff;
  font: 700 clamp(36px, 8.2vw, 112px)/.94 var(--display);
  letter-spacing: .08em;
  text-indent: .08em;
  text-align: center;
  white-space: nowrap;
}

.home-hero-title .is-accent {
  position: relative;
  display: inline-block;
  margin-left: 0;
  color: var(--brand);
}

.home-hero-title .hero-glitch-canvas {
  position: absolute;
  left: -10%;
  top: -16%;
  width: 120%;
  height: 132%;
  pointer-events: none;
  opacity: 0;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
}

.home-hero-title .is-accent.is-glitching {
  color: transparent;
}

.home-hero-title .is-accent.is-glitching .hero-glitch-canvas {
  opacity: 1;
}

.home-hero-title br { display: none; }
.home-hero-bottom {
  display: block;
  width: min(46vw, 620px);
  margin-top: clamp(38px, 5vh, 60px);
}

.home-hero-bottom > p {
  margin: 0;
  color: rgba(var(--paper-rgb), .62);
  font-size: clamp(17px, 1.5vw, 24px);
  line-height: 1.7;
  letter-spacing: .02em;
}

.home-hero-bottom strong {
  color: var(--paper);
  font-weight: 400;
}

.home-hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 30px;
}

.home-brands {
  --brand-shift: 0px;
  position: relative;
  z-index: 12;
  padding: clamp(42px, 6vh, 88px) 0;
  overflow: hidden;
  background: transparent;
  user-select: none;
  pointer-events: none;
}

.home-brands::before,
.home-brands::after {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: clamp(48px, 10vw, 160px);
  content: '';
  pointer-events: none;
}

.home-brands::before {
  left: 0;
  background: linear-gradient(90deg, var(--home-canvas), transparent);
}

.home-brands::after {
  right: 0;
  background: linear-gradient(270deg, var(--home-canvas), transparent);
}

.home-brands-rows {
  display: flex;
  flex-direction: column;
  gap: clamp(22px, 3.2vw, 42px);
}

.home-brands-row {
  overflow: hidden;
  contain: paint;
}

.home-brands-track {
  display: flex;
  align-items: center;
  gap: clamp(48px, 6vw, 96px);
  width: max-content;
  margin: 0;
  padding: 0 6vw;
  list-style: none;
  backface-visibility: hidden;
  will-change: transform;
  transform: translate3d(var(--brand-shift, 0px), 0, 0);
}

.home-brands.is-motion-paused .home-brands-track {
  will-change: auto;
}

.home-brands-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 44px;
  flex: 0 0 auto;
  opacity: .88;
}

.home-brands-logo img {
  display: block;
  width: auto;
  height: 32px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.home-brands-logo.is-wide img {
  height: 28px;
  max-width: 168px;
}

.home-brands-logo.is-mark img {
  height: 44px;
  width: 44px;
}

.home-brands-logo.is-combo img {
  height: 36px;
  width: 36px;
}

.home-brands-logo span {
  color: #fff;
  font: 700 18px/1 var(--display);
  letter-spacing: .04em;
  white-space: nowrap;
}

/* Section canvases */
.home-loop {
  padding: clamp(64px, 7vw, 120px) 0;
  background: transparent;
}

.home-domains {
  --chip-reveal: 1;
  --mx: 50%;
  --my: 50%;
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100svh;
  padding: clamp(120px, 18vh, 220px) 0 clamp(96px, 14vh, 180px);
  color: var(--paper);
  background: transparent;
  cursor: default;
}

.home-domains > .home-shell {
  flex: 1;
  width: 100%;
  min-width: 0;
}

.home-domains-layout {
  display: grid;
  place-items: center;
  width: 100%;
}

.home-domains::before,
.home-domains::after {
  position: absolute;
  inset: 0;
  content: '';
  pointer-events: none;
}

.home-domains::before {
  z-index: 0;
  background:
    radial-gradient(ellipse 46% 62% at var(--mx) var(--my), rgba(var(--brand-rgb), calc(.34 * var(--chip-reveal))), transparent 62%),
    linear-gradient(color-mix(in srgb, var(--brand) 16%, transparent) 1px, transparent 1px),
    linear-gradient(90deg, color-mix(in srgb, var(--brand) 16%, transparent) 1px, transparent 1px);
  background-size: auto, 22px 22px, 22px 22px;
  opacity: calc(var(--chip-reveal) * .28);
  -webkit-mask-image:
    linear-gradient(to bottom, transparent 0%, #000 22%, #000 78%, transparent 100%),
    radial-gradient(ellipse 70% 68% at var(--mx) var(--my), #000 8%, transparent 72%);
  mask-image:
    linear-gradient(to bottom, transparent 0%, #000 22%, #000 78%, transparent 100%),
    radial-gradient(ellipse 70% 68% at var(--mx) var(--my), #000 8%, transparent 72%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
  transition: opacity .45s var(--ease);
}

.home-domains::after {
  z-index: 0;
  background-image: radial-gradient(circle, color-mix(in srgb, var(--brand) 70%, var(--paper)) 1.05px, transparent 1.2px);
  background-size: 5px 5px;
  opacity: calc(var(--chip-reveal) * .46);
  -webkit-mask-image:
    linear-gradient(to bottom, transparent 0%, #000 22%, #000 78%, transparent 100%),
    radial-gradient(ellipse 64% 62% at var(--mx) var(--my), #000 0%, transparent 68%);
  mask-image:
    linear-gradient(to bottom, transparent 0%, #000 22%, #000 78%, transparent 100%),
    radial-gradient(ellipse 64% 62% at var(--mx) var(--my), #000 0%, transparent 68%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
  transition: opacity .45s var(--ease);
}

.home-domains-chip {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: var(--chip-reveal);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 22%, #000 78%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 22%, #000 78%, transparent 100%);
  transition: opacity .45s var(--ease);
}

.home-domains-chip::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  content: '';
  pointer-events: none;
  background:
    linear-gradient(to bottom, var(--home-canvas) 0%, transparent 28%),
    linear-gradient(to top, var(--home-canvas) 0%, transparent 28%);
}

.home-domains-chip-canvas {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.home-domains-line {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 3200px;
  overflow: visible;
  pointer-events: none;
  transform: none;
}

.home-experts-line { z-index: 9; }
.home-domains-line.home-experts-line path { stroke: var(--paper); }

html {
  overflow-x: hidden;
}

.home-domains-line path {
  fill: none;
  stroke: var(--brand);
  stroke-width: 36;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: .96;
  vector-effect: non-scaling-stroke;
  stroke-dasharray: var(--domains-line-length, 1);
  stroke-dashoffset: var(--domains-line-length, 1);
  transition: none;
}

.home-method,
.home-experts {
  position: relative;
  padding: clamp(64px, 7vw, 120px) 0;
  color: var(--paper);
  background: transparent;
}

.home-method {
  display: flex;
  align-items: center;
  padding-top: clamp(28px, 3.5vw, 56px);
  padding-bottom: clamp(24px, 3vw, 48px);
}

.home-method > .home-shell {
  flex: 1;
  width: 100%;
  min-width: 0;
}

.home-method-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr);
  gap: clamp(36px, 5.5vw, 96px);
  align-items: center;
  max-width: 1320px;
  margin-inline: auto;
  width: 100%;
}

.home-method-media {
  position: relative;
  width: 100%;
  max-height: min(78vh, 860px);
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 0;
  border-radius: 28px;
  background: transparent;
  isolation: isolate;
}

.home-method-code {
  box-sizing: border-box;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: clamp(20px, 2.4vw, 34px) clamp(18px, 2.2vw, 32px);
  overflow: hidden;
  color: color-mix(in srgb, rgba(var(--paper-rgb), .86) calc(100% - (var(--home-wash) * 100%)), var(--paper));
  font: 400 clamp(11px, 1.08vw, 14.5px)/1.7 var(--mono);
  letter-spacing: 0;
  white-space: pre;
  tab-size: 4;
}

.home-method-code code {
  font: inherit;
  white-space: pre;
}

.home-method-caret {
  display: inline-block;
  width: 2px;
  height: 1.05em;
  margin-left: 1px;
  vertical-align: -0.15em;
  background: color-mix(in srgb, var(--brand) calc(100% - (var(--home-wash) * 100%)), var(--paper));
  box-shadow: 0 0 12px color-mix(in srgb, rgba(var(--brand-rgb), .85) calc(100% - (var(--home-wash) * 100%)), rgba(var(--paper-rgb), .5));
  animation: homeMethodCaret 1.05s steps(1) infinite;
}

.home-method-media.is-typing .home-method-caret,
.home-method.is-motion-paused .home-method-caret {
  animation: none;
  opacity: 1;
}

.home-method-code .h-kw { color: color-mix(in srgb, #6d9dff calc(100% - (var(--home-wash) * 100%)), #edf3ff); }
.home-method-code .h-fn { color: color-mix(in srgb, #f3f6fb calc(100% - (var(--home-wash) * 100%)), var(--paper)); }
.home-method-code .h-cls { color: color-mix(in srgb, #c9d7ff calc(100% - (var(--home-wash) * 100%)), var(--paper)); }
.home-method-code .h-str { color: color-mix(in srgb, rgba(var(--paper-rgb), .55) calc(100% - (var(--home-wash) * 100%)), rgba(var(--paper-rgb), .82)); }
.home-method-code .h-num { color: color-mix(in srgb, #8eb0ff calc(100% - (var(--home-wash) * 100%)), #e8f0ff); }
.home-method-code .h-dec { color: color-mix(in srgb, var(--brand) calc(100% - (var(--home-wash) * 100%)), var(--paper)); }
.home-method-code .h-op { color: color-mix(in srgb, rgba(var(--paper-rgb), .4) calc(100% - (var(--home-wash) * 100%)), rgba(var(--paper-rgb), .72)); }
.home-method-code .h-cmt { color: color-mix(in srgb, rgba(var(--paper-rgb), .3) calc(100% - (var(--home-wash) * 100%)), rgba(var(--paper-rgb), .62)); }

@keyframes homeMethodCaret {
  50% { opacity: 0; }
}

.home-experts {
  padding: 0;
}

.home-experts-stage {
  position: relative;
  display: grid;
  place-items: center;
  height: 100svh;
  overflow: hidden;
  contain: paint;
}

.home-experts-brain {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  transition: opacity .8s ease;
}

.home-experts-brain.is-ready {
  opacity: .78;
}

.home-experts-formulas {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.home-experts-formula {
  --blur: 0px;
  position: absolute;
  left: var(--fx);
  top: var(--fy);
  color: rgba(var(--paper-rgb), var(--fo, .72));
  font: 400 var(--fs, 32px)/1 var(--mono);
  letter-spacing: .02em;
  white-space: nowrap;
  text-shadow: 0 18px 36px rgba(8, 24, 64, .28);
  user-select: none;
  transform: translate3d(0, var(--rise, 64px), 0) rotate(var(--fr, 0deg));
  filter: blur(18px);
  opacity: 0;
  will-change: transform, opacity, filter;
}

.home-experts-formula-glyph {
  display: inline-block;
  transform-origin: center;
}

.home-experts-formula-glyph sub,
.home-experts-formula-glyph sup {
  font-size: .62em;
  letter-spacing: 0;
}

.home-experts-frac {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin: 0 .08em;
  vertical-align: middle;
  line-height: 1.05;
}

.home-experts-frac i {
  font-style: normal;
  padding: 0 .12em;
}

.home-experts-frac i:first-child {
  border-bottom: 1.4px solid currentColor;
}

.home-experts-formula.is-note .home-experts-formula-glyph {
  display: flex;
  flex-direction: column;
  gap: .22em;
  letter-spacing: .03em;
  line-height: 1.2;
}

.home-experts-formula.is-note b {
  font-weight: 500;
}

.home-experts-formula.is-note small {
  font-size: .68em;
  letter-spacing: .06em;
  opacity: .82;
}

.home-experts-plot {
  display: block;
  width: clamp(128px, 14vw, 210px);
  height: auto;
  overflow: visible;
}

.home-experts-plot.is-wave {
  width: clamp(140px, 16vw, 230px);
}

.home-experts-plot.is-ecg {
  width: clamp(110px, 11vw, 160px);
}

.home-experts-formulas.is-visible .home-experts-formula {
  animation: homeExpertsFormulaPulse calc(var(--drift, 12s) * 1.85) ease-in-out infinite;
  animation-delay: var(--enter, 0s);
}

.home-experts-formulas.is-visible .home-experts-formula-glyph {
  animation: homeExpertsFormulaBob calc(var(--drift, 12s) * .9) ease-in-out infinite;
  animation-delay: var(--enter, 0s);
}

.home-experts.is-motion-paused .home-experts-formulas.is-visible .home-experts-formula,
.home-experts.is-motion-paused .home-experts-formulas.is-visible .home-experts-formula-glyph {
  animation-play-state: paused;
}

@keyframes homeExpertsFormulaPulse {
  0% {
    opacity: 0;
    filter: blur(14px);
    transform: translate3d(0, 12px, 0) rotate(var(--fr, 0deg)) scale(.98);
  }
  10%, 38% {
    opacity: var(--fo, .72);
    filter: blur(0);
    transform: translate3d(0, 0, 0) rotate(var(--fr, 0deg)) scale(1);
  }
  52%, 100% {
    opacity: 0;
    filter: blur(12px);
    transform: translate3d(0, -8px, 0) rotate(var(--fr, 0deg)) scale(.99);
  }
}

@keyframes homeExpertsFormulaBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}



.home-experts .home-shell {
  position: relative;
  z-index: 3;
}

.home-experts .home-statement {
  display: block;
  max-width: 820px;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}

.home-experts .home-display-title {
  text-wrap: balance;
}

.home-experts .home-statement-copy {
  max-width: 560px;
  margin: 28px auto 0;
  opacity: 0;
  transform: scale(.92);
}

.home-experts .home-display-title.is-visible + .home-statement-copy {
  animation: homeTitleFocusIn .88s cubic-bezier(.16, 1, .3, 1) forwards;
}

.home-experts .home-display-title.is-leaving + .home-statement-copy {
  animation: homeTitleFocusOut .58s cubic-bezier(.4, 0, .7, .2) forwards;
}

.home-experts .home-statement-copy > p {
  color: rgba(var(--paper-rgb), .88);
}

/* Editorial statement sections (01 / 03 / 04) */
.home-statement {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .32fr);
  gap: clamp(44px, 6vw, 110px);
  align-items: end;
  padding: clamp(84px, 9.5vw, 160px) 0 clamp(46px, 5vw, 80px);
}

.home-method .home-statement {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(22px, 2.8vw, 40px);
  padding: 0;
}

.home-method .home-display-title {
  font-size: clamp(40px, 4.4vw, 86px);
  line-height: 1.15;
  white-space: nowrap;
}

.home-method .home-statement-copy {
  max-width: 34em;
}

.home-statement-copy > p {
  margin: 0 0 10px;
  color: rgba(var(--paper-rgb), .55);
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: .02em;
}

.home-statement-copy > p + p {
  margin-top: 18px;
}

.home-domains .home-statement-copy > p {
  color: rgba(var(--paper-rgb), .78);
  font-weight: 400;
  letter-spacing: .02em;
}

.home-domains .home-statement {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  width: max-content;
  max-width: 100%;
  padding: 0;
  text-align: center;
}

.home-domains .home-statement-copy {
  max-width: 36em;
  margin-top: 0;
}

.home-method .home-display-title,
.home-loop .home-display-title {
  opacity: 0;
}

.home-method .home-display-title.is-visible,
.home-method .home-display-title.is-leaving,
.home-loop .home-display-title.is-visible,
.home-loop .home-display-title.is-leaving {
  opacity: 1;
}

.home-domains .home-display-title {
  font-size: 72px;
  font-weight: 700 !important;
  white-space: nowrap;
  text-align: center;
  text-wrap: nowrap;
}

@media (prefers-reduced-motion: reduce) {
  .home-domains-line path {
    stroke-dashoffset: 0;
    transition: none;
  }
}

.home-statement-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line-dark);
}

.home-statement-foot > :only-child {
  margin-left: auto;
}

.home-statement-close {
  max-width: 400px;
  margin: 0;
  color: rgba(var(--paper-rgb), .72);
  font-size: 16px;
  line-height: 1.85;
  text-align: right;
}

/* Project flow (02) */
.home-method .home-title-phrase {
  display: inline-block;
  opacity: 0;
  transform: translateX(-1.1em);
}

.home-method .home-display-title.is-visible .home-title-phrase {
  animation: homeTitleWipeIn .82s cubic-bezier(.16, 1, .3, 1) forwards;
  animation-delay: calc(var(--phrase-index) * 110ms);
}

.home-method .home-display-title.is-leaving .home-title-phrase {
  animation: homeTitleWipeOut .52s cubic-bezier(.4, 0, .7, .2) forwards;
  animation-delay: calc(var(--phrase-index) * 70ms);
}

@keyframes homeTitleWipeIn {
  from { opacity: 0; transform: translateX(-1.1em); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes homeTitleWipeOut {
  from { opacity: 1; transform: translateX(0); }
  to { opacity: 0; transform: translateX(1.1em); }
}

.home-domains .home-display-title,
.home-experts .home-display-title {
  opacity: 0;
  transform: scale(.92);
}

.home-domains .home-display-title.is-visible,
.home-experts .home-display-title.is-visible {
  animation: homeTitleFocusIn .88s cubic-bezier(.16, 1, .3, 1) forwards;
}

.home-domains .home-display-title.is-leaving,
.home-experts .home-display-title.is-leaving {
  animation: homeTitleFocusOut .58s cubic-bezier(.4, 0, .7, .2) forwards;
}

@keyframes homeTitleFocusIn {
  from { opacity: 0; transform: scale(.92); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes homeTitleFocusOut {
  from { opacity: 1; transform: scale(1); }
  to { opacity: 0; transform: scale(1.06); }
}

.home-loop .home-display-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.home-loop .home-title-line {
  display: block;
  overflow: hidden;
  padding-bottom: .04em;
}

.home-loop .home-title-line-inner {
  display: block;
  opacity: 0;
  transform: translateY(112%);
}

.home-loop .home-display-title.is-visible .home-title-line-inner {
  animation: homeTitleRiseIn .86s cubic-bezier(.16, 1, .3, 1) forwards;
  animation-delay: calc(var(--line-index) * 140ms);
}

.home-loop .home-display-title.is-leaving .home-title-line-inner {
  animation: homeTitleRiseOut .5s cubic-bezier(.4, 0, .7, .2) forwards;
  animation-delay: calc((1 - var(--line-index, 0)) * 80ms);
}

@keyframes homeTitleRiseIn {
  from { opacity: 0; transform: translateY(112%); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes homeTitleRiseOut {
  from { opacity: 1; transform: translateY(0); }
  to { opacity: 0; transform: translateY(-112%); }
}

.home-loop-heading {
  padding: clamp(64px, 6vw, 110px) 0 clamp(72px, 7vw, 120px);
}

.home-loop-heading > p {
  max-width: 42em;
  margin: 28px 0 0;
  color: rgba(var(--paper-rgb), .55);
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: .02em;
}

.home-flow-stage {
  position: relative;
}

.home-flow-pin {
  position: relative;
}

.home-flow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 30px);
  perspective: 1800px;
}

@media (min-width: 761px) and (prefers-reduced-motion: no-preference) {
  .home-flow-pin {
    width: min(100%, 215svh);
    margin-inline: auto;
  }

  .home-flow-card-motion,
  .home-flow-card-inner {
    transition: none;
  }
}

.home-flow-card {
  position: relative;
  min-width: 0;
  perspective: 1400px;
  container-type: inline-size;
}

.home-flow-card-motion {
  position: relative;
  transform-origin: 50% 50%;
  transform-style: preserve-3d;
  transform:
    translate3d(var(--flow-motion-x, 0px), calc(var(--flow-motion-y, 0px) + var(--flow-bob-y, 0px)), 0)
    rotateZ(var(--flow-motion-rz, 0deg))
    scale(var(--flow-motion-scale, 1));
}

.home-flow-card-inner {
  position: relative;
  width: 100%;
  aspect-ratio: .68;
  transform-style: preserve-3d;
  transform: rotateY(var(--flow-flip, 0deg));
  transition: transform .12s linear;
  will-change: transform;
}

.home-flow-card-face {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 1px solid rgba(var(--ink-rgb), .1);
  border-radius: 16px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  pointer-events: none;
}

.home-flow-card-back {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(18px, 2vw, 30px);
  color: var(--ink);
  border-color: rgba(255, 255, 255, .92);
  background: #fff;
  transform: rotateY(0deg);
  transition: border-color .35s ease, box-shadow .35s ease;
}

.home-flow-card-back::before {
  position: absolute;
  inset: 12px;
  content: '';
  border: 1px solid rgba(var(--ink-rgb), .08);
  border-radius: 10px;
  background: #fff;
  pointer-events: none;
}

.home-flow-card-blob {
  position: absolute;
  inset: 12px;
  overflow: hidden;
  border-radius: 10px;
  pointer-events: none;
  z-index: 0;
}

.home-flow-card-blob svg {
  position: absolute;
  inset: -56.6%;
  width: 213.2%;
  height: 213.2%;
  display: block;
}

.home-flow-card-waves,
.home-flow-card-waves-a,
.home-flow-card-waves-b,
.home-flow-card-waves-c {
  fill: none;
  stroke-width: 2.05;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-flow-card-ribbons {
  stroke: none;
}

.home-flow-card-back::after {
  display: none;
}

.home-flow-card-back > *:not(.home-flow-card-blob) {
  position: relative;
  z-index: 1;
}

.home-flow-card-back-index {
  position: absolute;
  top: 50%;
  right: -50px;
  margin: 0;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(307px, 147cqi, 704px);
  font-weight: 900;
  line-height: .68;
  letter-spacing: -.1em;
  text-align: right;
  transform: translateY(-50%);
}

.home-flow-card-back-label,
.home-flow-card-back i {
  display: none;
}

.home-flow-card-back small {
  display: none;
}

.home-flow-card-front {
  display: flex;
  flex-direction: column;
  color: var(--ink);
  background: var(--paper);
  cursor: pointer;
  transform: rotateY(180deg);
  transition: background .25s ease, border-color .25s ease;
}

.home-flow-card-front[aria-hidden="false"] {
  pointer-events: auto;
}

.home-flow-card-front:hover,
.home-flow-card-front:focus-visible {
  background: #fff;
  border-color: rgba(var(--ink-rgb), .22);
}

.home-flow-card-front-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 0;
  padding: clamp(22px, 2.5vw, 36px);
}

.home-flow-card-meta {
  color: var(--brand);
  font: 400 10px/1.5 var(--mono);
  letter-spacing: .07em;
}

.home-flow-card-title {
  margin: clamp(18px, 2.2vw, 34px) 0 0;
  color: var(--ink);
  font: 400 clamp(26px, 2.5vw, 42px)/1.08 var(--display);
  letter-spacing: -.045em;
  text-wrap: balance;
}

.home-flow-card-front-copy > p {
  margin: auto 0 0;
  padding-top: clamp(18px, 2vw, 28px);
  color: rgba(var(--ink-rgb), .56);
  font-size: clamp(13px, 1.15vw, 16px);
  line-height: 1.7;
}

.home-flow-card[data-flow-state="turning"] .home-flow-card-back,
.home-flow-card[data-flow-state="flipped"] .home-flow-card-back {
  border-color: rgba(var(--ink-rgb), .16);
}

.home-flow-card[data-flow-state="flipped"] .home-flow-card-front {
  box-shadow: 0 22px 60px rgba(16, 16, 18, .16);
}

/* Final act */
.home-final {
  position: relative;
  min-height: max(760px, 100svh);
  background: transparent;
  overflow: hidden;
}

.home-final::before { display: none; }

.home-final-marquee {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100svh;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
  visibility: hidden;
  --marquee-progress: 0;
}

.home-final-marquee-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.home-final-marquee-track {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: auto;
}

.home-final-marquee-row {
  flex: 0 0 24svh;
  height: 24svh;
  min-height: 0;
  margin: 0;
  line-height: 0;
  overflow: visible;
  will-change: transform;
  transform: translate3d(calc(-38vw + (var(--i) * 18vw) + (var(--marquee-progress) * (24vw + var(--i) * 8vw))), 0, 0);
}

.home-final-marquee-row svg {
  display: block;
  height: 100%;
  width: auto;
  min-width: 420vw;
  overflow: visible;
}

.home-final-marquee-row text {
  fill: var(--home-canvas);
  stroke: url(#mindflow-chrome);
  stroke-width: .55;
  stroke-opacity: .6;
  stroke-linejoin: miter;
  paint-order: stroke fill;
  font-family: var(--display);
  font-weight: 900;
  font-size: 108px;
  letter-spacing: -4px;
  word-spacing: 140px;
}

.home-final-marquee-cover {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: calc(220vw + 220vh);
  height: calc(300vh + 120vw);
  /* A bounded gradient avoids a multi-screen blurred shadow surface. */
  background: radial-gradient(ellipse 50% 7% at center, transparent 30%, color-mix(in srgb, var(--home-canvas) 16%, #000) 100%);
  opacity: calc(1 - min(1, var(--home-wash) * 8));
  animation: home-final-cover 8s linear infinite alternate;
}

@keyframes home-final-cover {
  0% { transform: translate(-50%, -50%) rotate(-32deg) translateY(-90vh); }
  100% { transform: translate(-50%, -50%) rotate(-32deg) translateY(90vh); }
}

.home-final-marquee-chrome {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(#0000, #0000);
  mask-image: linear-gradient(#0000, #0000);
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.home-final-marquee-fill {
  height: 100%;
}

.home-final-marquee-fluid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
}

.home-final-marquee-fill .home-final-marquee-row text {
  fill: url(#mindflow-oil);
  stroke: none;
}

.home-final-marquee-trail {
  position: absolute;
  inset: 0;
  display: none;
}

/* Safari uses a local SVG-only layer for the final screen. Fixed layers,
   SVG masks and canvas readback are unstable together in Safari's compositor. */
html.is-safari .home-final-marquee {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  visibility: visible !important;
  clip-path: none !important;
  background: transparent;
}

html.is-safari .home-final-marquee-track {
  position: absolute;
  inset: 0;
  height: 100%;
}

html.is-safari .home-final-marquee-row {
  animation: safari-final-marquee 18s linear infinite alternate;
  will-change: transform;
}

@keyframes safari-final-marquee {
  from { transform: translateX(calc(-38vw + (var(--i) * 18vw))); }
  to { transform: translateX(calc(-12vw + (var(--i) * 18vw))); }
}

html.is-safari .home-final-marquee-row text {
  fill: none;
  stroke: var(--brand);
  stroke-width: 0.75;
  stroke-opacity: .7;
}

html.is-safari .home-final-marquee-cover,
html.is-safari .home-final-marquee-chrome {
  display: none !important;
}

html.is-safari .home-final-title,
html.is-safari .home-final-actions {
  opacity: 1;
  filter: none;
  transform: none;
  animation: none !important;
}

.home-final-layout {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: max(760px, 100svh);
  padding: clamp(100px, 13vh, 150px) 0 88px;
}

.home-final-title {
  max-width: 1500px;
  margin: auto 0 72px;
  font: 700 clamp(64px, 8.8vw, 168px)/.88 var(--display);
  letter-spacing: -.07em;
  text-wrap: balance;
  opacity: 0;
  filter: blur(8px);
  transform: scale(.92) translateY(28px);
}

.home-final-title.is-visible {
  animation: homeTitleBloomIn 1s cubic-bezier(.16, 1, .3, 1) forwards;
}

.home-final-title.is-leaving {
  animation: homeTitleBloomOut .55s cubic-bezier(.4, 0, .7, .2) forwards;
}

@keyframes homeTitleBloomIn {
  from { opacity: 0; filter: blur(8px); transform: scale(.92) translateY(28px); }
  to { opacity: 1; filter: blur(0); transform: scale(1) translateY(0); }
}

@keyframes homeTitleBloomOut {
  from { opacity: 1; filter: blur(0); transform: scale(1) translateY(0); }
  to { opacity: 0; filter: blur(6px); transform: scale(.96) translateY(40px); }
}

.home-final-copy {
  max-width: 640px;
  margin: 0;
  color: rgba(var(--paper-rgb), .6);
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: .02em;
}

.home-final-copy p {
  margin: 0;
}

.home-final-copy p + p {
  margin-top: 16px;
}

.home-final-actions {
  margin-top: 0;
  margin-bottom: auto;
}

.home-final-actions .home-button {
  min-width: 300px;
}

body[data-page="home"] .site-footer {
  z-index: 12;
  color: var(--paper);
  background: transparent;
}

body[data-page="home"] .footer-inner {
  padding: 0 0 28px;
}

/* Incremental local evidence media: preserve the original dynamic homepage layout. */
.media-frame {
  position: relative;
  display: block;
  overflow: hidden;
  isolation: isolate;
  background: var(--ink-soft);
  border: 1px solid rgba(var(--paper-rgb), .16);
}

.media-frame > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--focal-x, 50%) var(--focal-y, 50%);
}

.media-frame::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: '';
  pointer-events: none;
  background: linear-gradient(180deg, rgba(var(--ink-rgb), .08), rgba(var(--ink-rgb), .42));
}

/* Tablet */
@media (max-width: 1100px) {
  body[data-page="home"] .desktop-nav,
  body[data-page="home"] .header-cta { display: none; }
  body[data-page="home"] .menu-toggle { display: block; }

  .home-hero-title { width: 100%; }
  .home-hero-bottom { padding-left: 0; }
  .home-brands { padding: 36px 0 28px; }
  .home-brands-rows { gap: 20px; }
  .home-brands-logo span { font-size: 15px; }

  .home-statement {
    grid-template-columns: minmax(0, 1fr) minmax(240px, .36fr);
    gap: 40px;
  }

  .home-experts-formula:nth-child(n + 22) { display: none; }

  .home-method-layout {
    gap: 32px;
  }

  .home-domains-card {
    min-height: 0;
  }

  .home-method-media {
    border-radius: 22px;
  }
}

/* Narrow tablet */
@media (max-width: 900px) {
  .home-method-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .home-method-media {
    max-height: none;
    aspect-ratio: 16 / 10;
    border-radius: 20px;
  }

  .home-domains-card {
    min-height: 0;
  }

  .home-method .home-statement-copy {
    margin-top: 0;
  }

  .home-statement {
    display: block;
  }

  .home-statement-copy {
    max-width: 460px;
    margin-top: 34px;
  }

  .home-experts-formula:nth-child(n + 16) { display: none; }

  .home-experts .home-statement-copy { max-width: 420px; }

  .home-domains .home-statement {
    display: flex;
    gap: 28px;
  }

  .home-domains .home-statement-copy {
    max-width: 36em;
    margin-top: 0;
  }
}

/* Mobile */
@media (max-width: 760px) {
  body[data-page="home"] {
    --home-section: 96px;
    --home-gap: 16px;
  }

  body[data-page="home"] .site-header { height: 68px; }
  body[data-page="home"] .site-header.is-scrolled { height: 60px; }
  body[data-page="home"] .mobile-menu { padding-top: 86px; }

  .home-display-title { font-size: clamp(46px, 13.5vw, 68px); line-height: .96; letter-spacing: -.05em; }
  .home-statement .home-display-title,
  .home-loop-heading .home-display-title { font-size: clamp(42px, 12vw, 64px); }
  .home-domains .home-display-title {
    width: 100%;
    max-width: 100%;
    font-size: clamp(36px, 11vw, 48px);
    line-height: 1.12;
    letter-spacing: -.04em;
    white-space: normal;
    text-wrap: balance;
  }
  .home-domains .home-statement {
    width: 100%;
    max-width: 100%;
  }
  .home-domains-line { height: 2200px; }
  .home-domains-line path { stroke-width: 22; }
  .home-brands {
    padding: 28px 0 18px;
  }
  .home-brands-rows { gap: 16px; }
  .home-brands-track { gap: 36px; padding: 0 8vw; }
  .home-brands-logo { height: 32px; gap: 8px; }
  .home-brands-logo img { height: 24px; }
  .home-brands-logo.is-wide img { height: 20px; max-width: 120px; }
  .home-brands-logo.is-mark img,
  .home-brands-logo.is-combo img { height: 28px; width: 28px; }
  .home-brands-logo span { font-size: 13px; }
  .home-domains {
    min-height: 100svh;
    padding: 88px 0 72px;
  }
  .home-domains-card {
    min-height: 0;
  }
  /* On narrow screens the explicit <br> strands the closing punctuation on its own line — let titles wrap naturally. */
  .home-statement .home-display-title br,
  .home-loop-heading .home-display-title br,
  .home-final-title br { display: none; }
  /* Natural wrapping can orphan the final punctuation; balance keeps the last line substantial. */
  .home-statement .home-display-title,
  .home-loop-heading .home-display-title,
  .home-final-title { text-wrap: balance; }

  .home-button { width: 100%; min-width: 0; min-height: 50px; }

  .home-hero { height: auto; min-height: 100svh; }
  .home-hero-layout { height: auto; min-height: 100svh; padding: 0; justify-content: center; }
  .liquid-core-stage .liquid-core-fallback { transform: translate(18%, 8%) scale(.8); opacity: .52; }

  .home-hero-kicker { width: 100%; font-size: 8px; }
  .home-hero-title { width: 100%; margin-top: 0; font-size: clamp(46px, 14vw, 72px); line-height: 1.08; letter-spacing: .04em; text-indent: 0; text-align: center; white-space: normal; }
  .home-hero-title .is-accent { margin-left: -.04em; }
  .home-hero-title br { display: block; }
  .home-hero-bottom { display: block; width: 100%; margin-top: 46px; }
  .home-hero-bottom > p { max-width: 320px; font-size: 16px; }
  .home-hero-actions { display: flex; flex-direction: column; align-items: stretch; gap: 17px; margin-top: 30px; }
  .home-hero-actions .home-text-link { align-self: flex-start; }

  .home-statement { padding: 64px 0 40px; }
  .home-method .home-statement { padding: 0; }
  .home-method .home-display-title { font-size: clamp(32px, 9vw, 48px); }
  .home-method-media { border-radius: 16px; aspect-ratio: 4 / 3; }
  .home-method-code { padding: 16px 14px; }
  .home-statement-copy { margin-top: 30px; }
  .home-method .home-statement-copy { margin-top: 0; }
  .home-statement-copy > p { font-size: 14px; }

  .home-experts-stage {
    display: grid;
    place-items: center;
    height: auto;
    min-height: 100svh;
    padding: 88px 0 36px;
    overflow: hidden;
  }
  .home-experts-formulas {
    position: absolute;
    inset: 0;
  }
  .home-experts-formula:nth-child(n + 12) { display: none; }
  .home-experts .home-statement { padding: 0 8px; }

  .home-statement-foot {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding-top: 24px;
  }

  .home-statement-foot > :only-child {
  margin-left: -2px;
  }

  .home-statement-close { max-width: 320px; text-align: left; font-size: 15px; }

  .home-loop-heading { padding: 64px 0 72px; }

  .home-flow-grid {
    grid-template-columns: 1fr;
    row-gap: 24px;
    perspective: none;
  }

  .home-flow-card {
    perspective: 1200px;
  }

  .home-flow-card-inner {
    aspect-ratio: .78;
  }

  .home-flow-card-face {
    border-radius: 12px;
  }

  .home-flow-card-front-copy { padding: 22px; }
  .home-flow-card-meta { margin-top: 0; font-size: 10px; }
  .home-flow-card-title { font-size: clamp(28px, 8.6vw, 44px); }
  .home-flow-card-front-copy > p { font-size: 14px; }

  .home-final { min-height: max(800px, 100svh); }
  .home-final-marquee-row { flex-basis: 20svh; height: 20svh; }
  .home-final-marquee-row svg { height: 100%; width: auto; }
  .home-final-marquee-row text { stroke-width: .5; }
  .home-final-layout { min-height: max(800px, 100svh); padding: 82px 0 20px; }
  .home-final-title { margin: auto 0 34px; font-size: clamp(46px, 13vw, 64px); line-height: .94; letter-spacing: -.055em; }
  .home-final-copy { font-size: 14px; }
  .home-final-actions { margin-top: 30px; }
  .home-final-actions .home-button { min-width: 0; }

  .liquid-core-stage {
    position: absolute;
    z-index: 9;
    bottom: auto;
    height: 850px;
  }

  .liquid-core-stage .liquid-core-canvas { display: none; }

  .liquid-core-stage .liquid-core-fallback {
    inset: auto -96px 0 auto;
    width: 430px;
    height: 300px;
    opacity: .42;
    transform: none;
  }

  .home-hero-actions { justify-content: center; }
  .home-hero-actions .home-button-contact { align-self: center; }
}

@media (prefers-reduced-motion: reduce) {
  .home-domains .home-display-title,
  .home-method .home-title-phrase,
  .home-experts .home-display-title,
  .home-experts .home-statement-copy,
  .home-loop .home-title-line-inner,
  .home-final-title {
    opacity: 1;
    clip-path: none;
    filter: none;
    transform: none;
    animation: none;
  }
  .home-hero-title .hero-glitch-canvas { display: none; }
  .home-hero-title .is-accent.is-glitching { color: var(--brand); }
  .home-hero-layout { transform: none; will-change: auto; }
  .home-hero-terrain-canvas,
  .home-hero-backdrop-canvas,
  .home-domains-field-canvas,
  .home-domains-chip-canvas,
  .home-experts-brain { display: none; }
  .home-domains { --chip-reveal: 0; }
  .home-experts-formula,
  .home-experts-formulas.is-visible .home-experts-formula,
  .home-experts-formulas.is-visible .home-experts-formula-glyph {
    opacity: var(--fo, .72);
    filter: none;
    transform: rotate(var(--fr, 0deg));
    animation: none;
    translate: none;
  }
  .liquid-core-canvas { transform: none !important; transition: none; }
  .home-flow-card-inner { transition: none; }
  .home-method-caret { animation: none; }
  .home-final-marquee-row {
    will-change: auto;
    transform: translate3d(calc(-38vw + (var(--i) * 18vw) + .32 * (24vw + var(--i) * 8vw)), 0, 0);
  }
  .home-final-marquee-cover {
    animation: none;
    filter: blur(80px);
    transform: translate(-50%, -50%) rotate(-32deg);
  }
  .home-final-marquee-chrome { display: none; }
  .home-brands-track { will-change: auto; }
}

body[data-page="home"] :is(h1, h2, h3, .home-hero-title, .home-display-title, .home-final-title, .home-flow-card-title) {
  font-weight: 700 !important;
}

body[data-page="home"] .home-flow-card-back-label,
body[data-page="home"] .home-flow-card-back-index {
  font-weight: 900 !important;
}

body[data-page="home"] :is(strong, b) {
  font-weight: 400 !important;
}

body[data-page="home"] :is(.home-hero-kicker, .home-button, .home-text-link, .home-flow-card-meta) {
  font-weight: 400;
}

/* The subject-led layout below intentionally uses full-width section canvases. */
@media (min-width: 1101px) {
  body[data-page="home"] :is(.home-statement, .home-loop-heading) { max-width: 100%; }
  body[data-page="home"] main > section > .home-shell,
  body[data-page="home"] footer.home-final > .home-shell { padding-inline: var(--pad); }
}

@media (max-width: 760px) {
  body[data-page="home"] main > section > .home-shell,
  body[data-page="home"] footer.home-final > .home-shell {
    padding-inline: var(--pad);
    background: transparent;
  }
}
