:root {
  --canvas: #f7f7f6;
  --raised: #ffffff;
  --sunken: #efefed;
  --ink: #1c1917;
  --ink-2: #57534e;
  --ink-3: #716c67;
  --line: #dfdfdb;
  --line-strong: #cacac5;
  --accent: #0f766e;
  --accent-hover: #115e59;
  --accent-on: #ffffff;
  --accent-soft: #ccfbf1;
  --accent-soft-ink: #115e59;
  --preview-halo: #5eaec9;
  --product-preview-canvas: #f7f7f6;
  --product-preview-raised: #ffffff;
  --product-preview-sunken: #f0f0ee;
  --logo-arch: #0f766e;
  --logo-basin: #14b8a6;
  --danger: #b42318;
  --success: #087a55;
  --warning: #b45309;
  --warning-ink: #92400e;
  --platform-bg: #103f3b;
  --platform-ink: #f5fffd;
  --platform-muted: #b9d9d4;
  --shadow-small: 0 1px 2px rgba(28, 25, 23, .06), 0 10px 30px rgba(28, 25, 23, .08);
  --shadow-large: 0 28px 90px rgba(28, 25, 23, .16), 0 5px 24px rgba(28, 25, 23, .08);
  --radius-control: 9px;
  --radius-card: 16px;
  --radius-panel: 24px;
  --header-height: 68px;
  --shell: min(1680px, calc(100% - clamp(32px, 6vw, 112px)));
}

[data-theme="dark"] {
  --canvas: #1c1917;
  --raised: #292524;
  --sunken: #23211f;
  --ink: #f1efed;
  --ink-2: #c9c5c0;
  --ink-3: #aba6a1;
  --line: #3b3734;
  --line-strong: #504a46;
  --accent: #2dd4bf;
  --accent-hover: #5eead4;
  --accent-on: #073a36;
  --accent-soft: #134e4a;
  --accent-soft-ink: #8df6e8;
  --preview-halo: #38bdf8;
  --product-preview-canvas: #1c1917;
  --product-preview-raised: #292524;
  --product-preview-sunken: #232120;
  --logo-arch: #5eead4;
  --logo-basin: #2dd4bf;
  --danger: #ff8a80;
  --success: #5ee6b8;
  --warning: #fbbf24;
  --warning-ink: #fde68a;
  --shadow-small: 0 1px 2px rgba(0, 0, 0, .24), 0 12px 34px rgba(0, 0, 0, .34);
  --shadow-large: 0 30px 100px rgba(0, 0, 0, .46), 0 8px 28px rgba(0, 0, 0, .3);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --canvas: #1c1917;
    --raised: #292524;
    --sunken: #23211f;
    --ink: #f1efed;
    --ink-2: #c9c5c0;
    --ink-3: #aba6a1;
    --line: #3b3734;
    --line-strong: #504a46;
    --accent: #2dd4bf;
    --accent-hover: #5eead4;
    --accent-on: #073a36;
    --accent-soft: #134e4a;
    --accent-soft-ink: #8df6e8;
    --preview-halo: #38bdf8;
    --logo-arch: #5eead4;
    --logo-basin: #2dd4bf;
    --danger: #ff8a80;
    --success: #5ee6b8;
    --warning: #fbbf24;
    --warning-ink: #fde68a;
    --shadow-small: 0 1px 2px rgba(0, 0, 0, .24), 0 12px 34px rgba(0, 0, 0, .34);
    --shadow-large: 0 30px 100px rgba(0, 0, 0, .46), 0 8px 28px rgba(0, 0, 0, .3);
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--canvas);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent 0,
    color-mix(in srgb, var(--line) 28%, transparent) 50%,
    transparent 100%
  );
  opacity: .32;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

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

h1,
h2,
h3,
p,
figure,
ul {
  margin-top: 0;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(3.4rem, 4.8vw, 5.5rem);
  font-weight: 620;
  letter-spacing: -.071em;
  line-height: .91;
}

h1 span {
  display: block;
  white-space: nowrap;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.45rem, 4.35vw, 4.9rem);
  font-weight: 620;
  letter-spacing: -.058em;
  line-height: .96;
}

h3 {
  margin-bottom: 9px;
  font-size: 1.12rem;
  font-weight: 640;
  letter-spacing: -.025em;
  line-height: 1.25;
}

p {
  color: var(--ink-2);
}

::selection {
  background: var(--accent-soft);
  color: var(--ink);
}

:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--accent) 65%, transparent);
  outline-offset: 3px;
}

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

.section {
  --section-background: var(--canvas);
  position: relative;
  isolation: isolate;
  padding-block: clamp(78px, 8vw, 132px);
  background: transparent;
}

.section::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  border-top: 1px solid var(--line);
  background: var(--section-background);
  transform: translateX(-50%);
}

.workflow::before {
  border-top: 0;
}

.data-story,
.models,
.trust,
.early-access {
  --section-background: var(--sunken);
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--accent);
  font-size: .73rem;
  font-weight: 760;
  letter-spacing: .14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.section-lede {
  max-width: 690px;
  font-size: clamp(1.05rem, 1.35vw, 1.28rem);
  line-height: 1.55;
}

.qualification-note,
.consent-note {
  color: var(--ink-3);
  font-size: .82rem;
  line-height: 1.5;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: var(--radius-control);
  background: var(--ink);
  color: var(--canvas);
  font-size: .88rem;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

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

.header-sentinel {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 2px;
  pointer-events: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid color-mix(in srgb, var(--line) 72%, transparent);
  background-color: var(--canvas);
  background-color: color-mix(in srgb, var(--canvas) 86%, transparent);
  backdrop-filter: blur(18px) saturate(135%);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
  transition: background-color 180ms ease, border-color 180ms ease;
}

.js .site-header:not(.is-scrolled) {
  border-bottom-color: transparent;
  background-color: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.nav-shell {
  display: flex;
  align-items: center;
  min-height: var(--header-height);
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 7px;
  color: var(--ink);
  font-size: 1.14rem;
  font-weight: 720;
  letter-spacing: -.045em;
}

.brand-mark {
  width: 31px;
  height: 31px;
  overflow: visible;
}

.brand-arch {
  fill: var(--logo-arch);
}

.brand-basin {
  fill: var(--logo-basin);
}

[data-logo-mark] .brand-arch {
  animation: arch-arrives 720ms cubic-bezier(.2, .85, .25, 1) 90ms both;
  transform-box: fill-box;
  transform-origin: center bottom;
}

[data-logo-mark] .brand-basin {
  animation: basin-arrives 820ms cubic-bezier(.22, .78, .25, 1) 210ms both;
  transform-box: fill-box;
  transform-origin: center bottom;
}

@keyframes arch-arrives {
  from { opacity: 0; transform: translateY(7px) scaleX(.9); }
  to { opacity: 1; transform: translateY(0) scaleX(1); }
}

@keyframes basin-arrives {
  from { opacity: 0; transform: translateY(5px) scaleY(.32); }
  to { opacity: 1; transform: translateY(0) scaleY(1); }
}

.site-navigation {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(22px, 3vw, 48px);
}

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
}

.nav-links {
  gap: clamp(18px, 2vw, 30px);
}

@media (min-width: 901px) {
  .nav-shell {
    position: relative;
  }

  .nav-links {
    position: absolute;
    left: 50%;
    gap: 2px;
    padding: 3px 8px;
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    background-color: var(--raised);
    background-color: color-mix(in srgb, var(--raised) 90%, transparent);
    box-shadow: inset 0 1px 0 color-mix(in srgb, var(--raised) 78%, transparent);
    white-space: nowrap;
    transform: translateX(-50%);
    transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  }

  .nav-links a {
    padding-inline: 12px;
  }

  .site-header.is-scrolled .nav-links {
    border-color: var(--line-strong);
    background-color: var(--raised);
    box-shadow: var(--shadow-small);
  }
}

.nav-links a {
  position: relative;
  padding-block: 10px;
  color: var(--ink-2);
  font-size: .9rem;
  font-weight: 590;
  line-height: 1;
}

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

.nav-links a:hover {
  color: var(--ink);
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-actions {
  gap: 8px;
}

.language-switcher {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(32px, 1fr));
  align-items: center;
  min-height: 42px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
  background: color-mix(in srgb, var(--raised) 76%, transparent);
}

.language-switcher a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  min-height: 34px;
  padding-inline: 7px;
  border-radius: calc(var(--radius-control) - 4px);
  color: var(--ink-3);
  font-size: .7rem;
  font-weight: 760;
  letter-spacing: .04em;
  line-height: 1;
  transition: background-color 170ms ease, color 170ms ease, box-shadow 170ms ease;
}

.language-switcher a:hover {
  color: var(--ink);
}

.language-switcher a[aria-current="page"] {
  background: var(--accent);
  color: var(--accent-on);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .14) inset;
}

.button,
.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius-control);
  font-weight: 650;
  line-height: 1;
  transition: background-color 170ms ease, border-color 170ms ease, color 170ms ease, transform 170ms ease, box-shadow 170ms ease;
}

.button {
  min-height: 42px;
  gap: 8px;
  padding: 0 15px;
  font-size: .86rem;
}

.button-large {
  min-height: 48px;
  padding-inline: 20px;
  font-size: .92rem;
}

.button-primary {
  background: var(--accent);
  color: var(--accent-on);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .16) inset, 0 6px 18px color-mix(in srgb, var(--accent) 20%, transparent);
}

.button-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.button-secondary,
.button-quiet {
  border-color: var(--line-strong);
  background: color-mix(in srgb, var(--raised) 78%, transparent);
  color: var(--ink);
}

.button-secondary:hover,
.button-quiet:hover {
  border-color: color-mix(in srgb, var(--ink) 32%, var(--line));
  background: var(--raised);
}

.icon-button {
  position: relative;
  width: 42px;
  height: 42px;
  padding: 0;
  border-color: var(--line);
  background: transparent;
}

.icon-button:hover {
  border-color: var(--line-strong);
  background: var(--sunken);
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  display: block;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-toggle {
  display: none;
  margin-left: auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(360px, 2fr) minmax(0, 3fr);
  align-items: center;
  column-gap: clamp(42px, 4vw, 72px);
  row-gap: clamp(18px, 2vw, 28px);
  min-height: calc(100svh - var(--header-height) - 1px);
  padding-block: clamp(30px, 4.3vw, 66px) clamp(12px, 1.5svh, 18px);
}

.hero-copy {
  min-width: 0;
  padding-bottom: 8px;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 24px;
  color: var(--accent);
  font-size: .76rem;
  font-weight: 690;
  letter-spacing: .035em;
}

.hero-lede {
  max-width: 660px;
  margin-bottom: 27px;
  font-size: clamp(1.06rem, 1.52vw, 1.32rem);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 0;
}

.hero-platform-note {
  max-width: 520px;
  margin: 12px 0 0;
  color: var(--ink-2);
  font-size: .8rem;
  line-height: 1.45;
}

.hero-platform-note[hidden] {
  display: none;
}

.hero-visual {
  justify-self: stretch;
  width: 100%;
  min-width: 0;
  margin: 0;
}

.model-rail {
  grid-column: 1 / -1;
  align-self: end;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  align-items: center;
  width: 100%;
  min-width: 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.model-rail-group {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  min-width: 0;
  gap: clamp(13px, 1.25vw, 20px);
}

.model-rail-group + .model-rail-group {
  padding-left: clamp(18px, 2vw, 32px);
  border-left: 1px solid var(--line);
}

.model-rail-group[data-model-placement="local"] {
  padding-right: clamp(18px, 1.6vw, 24px);
}

.model-rail-label {
  flex: 0 0 auto;
  margin: 0;
  color: var(--ink-3);
  font-size: .66rem;
  font-weight: 720;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.model-logo-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-width: 0;
  margin: 0;
  padding: 0;
  gap: clamp(12px, 1.15vw, 20px);
  list-style: none;
}

.model-logo {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 0;
}

.model-lockup {
  display: block;
  width: auto;
  min-width: 0;
  height: 22px;
}

.model-lockup-paired {
  display: inline-grid;
  grid-template-columns: 20px auto;
  align-items: center;
  gap: 6px;
}

.model-lockup img {
  display: block;
  max-width: none;
  object-fit: contain;
}

.model-lockup-symbol {
  width: 20px;
  height: 20px;
}

.model-lockup-wordmark {
  width: auto;
  height: 13px;
  object-position: left center;
}

.model-lockup-full {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.model-lockup-full img {
  width: auto;
  height: 22px;
}

.model-lockup-provider img {
  height: 12px;
}

.model-logo[data-model-brand="ornith"] .model-lockup-full img,
.model-logo[data-model-brand="umans"] .model-lockup-full img {
  height: 20px;
}

.model-logo[data-model-brand="gemma"] .model-lockup-symbol {
  transform: scale(1.22);
}

.model-logo[data-model-brand="anthropic"] .model-lockup-paired {
  grid-template-columns: 18px auto;
  gap: 5px;
}

.model-logo[data-model-brand="anthropic"] .model-lockup-symbol {
  width: 18px;
  height: 18px;
}

.model-logo[data-model-brand="anthropic"] .model-lockup-wordmark {
  height: 12px;
}

.model-logo[data-model-brand="openai"] .model-lockup-paired {
  grid-template-columns: 22px auto;
}

.model-logo[data-model-brand="openai"] .model-lockup-symbol {
  width: 22px;
  height: 22px;
}

.model-logo[data-model-brand="openai"] .model-lockup-wordmark {
  height: 15px;
}

.model-logo[data-model-brand="google"] .model-lockup-provider img {
  height: 18px;
}

.model-logo[data-model-brand="meta"] .model-lockup-provider img {
  height: 15px;
}

.model-logo[data-model-brand="glm"] .model-lockup-full img {
  height: 19px;
}

.model-lockup-mistral img {
  height: 19px;
}

.model-lockup-mistral .model-lockup-theme-dark {
  display: none;
}

[data-theme="dark"] .model-lockup-mistral .model-lockup-theme-light {
  display: none;
}

[data-theme="dark"] .model-lockup-mistral .model-lockup-theme-dark {
  display: block;
}

[data-theme="dark"] .model-lockup-wordmark,
[data-theme="dark"] .model-logo:is([data-model-brand="anthropic"], [data-model-brand="openai"]) .model-lockup-symbol,
[data-theme="dark"] .model-logo:is([data-model-brand="umans"], [data-model-brand="glm"]) .model-lockup-full img {
  filter: invert(1);
}

[data-theme="dark"] .model-logo[data-model-brand="meta"] .model-lockup-full img {
  filter: brightness(0) invert(1);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) .model-lockup-mistral .model-lockup-theme-light {
    display: none;
  }

  :root:not([data-theme]) .model-lockup-mistral .model-lockup-theme-dark {
    display: block;
  }

  :root:not([data-theme]) .model-lockup-wordmark,
  :root:not([data-theme]) .model-logo:is([data-model-brand="anthropic"], [data-model-brand="openai"]) .model-lockup-symbol,
  :root:not([data-theme]) .model-logo:is([data-model-brand="umans"], [data-model-brand="glm"]) .model-lockup-full img {
    filter: invert(1);
  }


  :root:not([data-theme]) .model-logo[data-model-brand="meta"] .model-lockup-full img {
    filter: brightness(0) invert(1);
  }
}

@keyframes hero-copy-arrive {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes hero-preview-arrive {
  from { opacity: 0; transform: translateY(22px) scale(.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-arrival-ready [data-hero-copy] {
    animation: hero-copy-arrive 520ms cubic-bezier(.2, .78, .24, 1) 60ms both;
  }

  .hero-arrival-ready [data-hero-preview] {
    transform-origin: center;
    animation: hero-preview-arrive 680ms cubic-bezier(.16, 1, .3, 1) 210ms both;
  }
}

.product-stage {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-panel);
  background: var(--raised);
  box-shadow: var(--shadow-large);
}

.preview-halo-zone {
  position: relative;
  isolation: isolate;
}

.preview-halo-zone::before {
  content: "";
  position: absolute;
  inset: 13% 1% 16%;
  z-index: -1;
  border-radius: 40%;
  background:
    radial-gradient(
      ellipse 31% 64% at 4% 57%,
      var(--preview-halo) 0 14%,
      transparent 72%
    ),
    radial-gradient(
      ellipse 31% 64% at 96% 43%,
      var(--preview-halo) 0 14%,
      transparent 72%
    );
  filter: blur(clamp(18px, 1.6vw, 25px));
  opacity: .68;
  pointer-events: none;
}

.connected-work-figure .preview-halo-zone::before {
  inset: 10% 0 6%;
  background:
    radial-gradient(
      ellipse 42% 68% at 5% 63%,
      var(--preview-halo) 0 14%,
      transparent 72%
    ),
    radial-gradient(
      ellipse 42% 68% at 95% 55%,
      var(--preview-halo) 0 14%,
      transparent 72%
    );
  filter: blur(clamp(20px, 2vw, 30px));
  opacity: .74;
}

.preview-halo-zone > .product-stage {
  position: relative;
  z-index: 1;
  border-color: color-mix(in srgb, var(--preview-halo) 14%, var(--line-strong));
}

[data-theme="dark"] .preview-halo-zone::before {
  opacity: .78;
}

[data-theme="dark"] .connected-work-figure .preview-halo-zone::before {
  opacity: .84;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) .preview-halo-zone::before {
    opacity: .78;
  }

  :root:not([data-theme]) .connected-work-figure .preview-halo-zone::before {
    opacity: .84;
  }
}

.product-stage::before {
  content: "";
  display: block;
  height: 6px;
  background: var(--product-preview-canvas);
}

.product-frame.product-stage::before {
  background: linear-gradient(
    90deg,
    var(--product-preview-sunken) 0 22%,
    var(--product-preview-canvas) 22% 68.833%,
    var(--product-preview-raised) 68.833% 100%
  );
}

.wide-product.product-stage::before {
  background: var(--product-preview-canvas);
}

@media (max-width: 700px) {
  .preview-halo-zone::before {
    inset: 12% 0 15%;
    filter: blur(18px);
    opacity: .64;
  }

  .connected-work-figure .preview-halo-zone::before {
    inset: 10% 0 8%;
    filter: blur(20px);
    opacity: .7;
  }

  [data-theme="dark"] .preview-halo-zone::before {
    opacity: .74;
  }

  [data-theme="dark"] .connected-work-figure .preview-halo-zone::before {
    opacity: .8;
  }
}

@media (min-width: 1241px) and (max-height: 1000px) {
  .task-management-visual .preview-halo-zone {
    height: 100%;
  }
}

.product-frame {
  position: relative;
}

.product-preview {
  position: relative;
  width: 100%;
  overflow: hidden;
  contain: layout paint;
  background: var(--canvas);
}

.product-preview-task {
  --preview-logical-width: 1200px;
  --preview-logical-height: 846px;
  aspect-ratio: 1200 / 846;
}

.product-preview-home {
  --preview-logical-width: 1024px;
  --preview-logical-height: 784px;
  aspect-ratio: 1024 / 784;
}

.product-preview[data-preview-fit="contain"] {
  height: 100%;
  aspect-ratio: auto;
}

.product-preview-story {
  --preview-logical-width: 1200px;
  --preview-logical-height: 760px;
  aspect-ratio: 1200 / 760;
}

.product-preview iframe {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: var(--preview-logical-width);
  height: var(--preview-logical-height);
  border: 0;
  background: var(--canvas);
  pointer-events: none;
  transform: scale(var(--preview-scale, 1));
  transform-origin: top left;
}

.product-preview[data-preview-fit="contain"] iframe {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(var(--preview-scale, 1));
  transform-origin: center;
}

.tide-track {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  overflow: hidden;
  background: color-mix(in srgb, var(--accent) 14%, transparent);
}

.tide-track span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--accent);
  transform: scaleX(.6);
  transform-origin: left;
}

@keyframes marketing-tide {
  from { transform: scaleX(.34); }
  to { transform: scaleX(.6); }
}

@media (prefers-reduced-motion: no-preference) {
  .js [data-tide-stage] .tide-track span {
    animation: marketing-tide 3.2s ease-in-out infinite alternate;
    animation-play-state: paused;
  }

  .js [data-tide-stage].is-tide-visible .tide-track span {
    animation-play-state: running;
  }

  .hero-arrival-ready [data-hero-arrival] [data-tide-stage].is-tide-visible .tide-track span {
    animation-delay: 820ms;
  }

  .js [data-tide-stage].is-tide-static .tide-track span {
    animation: none;
    transform: scaleX(.6);
  }
}

.hero-visual figcaption,
.feature-visual figcaption {
  margin-top: 13px;
  color: var(--ink-3);
  font-size: .74rem;
  line-height: 1.4;
}

.proof-rail {
  border-block: 1px solid var(--line);
  background: color-mix(in srgb, var(--raised) 62%, transparent);
}

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

.proof-grid > div {
  min-width: 0;
  padding: 24px clamp(18px, 2.4vw, 38px);
  border-left: 1px solid var(--line);
}

.proof-grid > div:first-child {
  padding-left: 0;
  border-left: 0;
}

.proof-grid strong,
.proof-grid span {
  display: block;
}

.public-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 1px;
  background: var(--line);
}

.public-proof-grid a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 24px;
  color: inherit;
  background: var(--raised);
  text-decoration: none;
}

.public-proof-grid strong {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}

.public-proof-grid span {
  color: var(--ink-3);
  font-size: var(--type-footnote);
}

@media (max-width: 700px) {
  .public-proof-grid {
    grid-template-columns: 1fr;
  }
}

.proof-grid strong {
  margin-bottom: 4px;
  font-size: .84rem;
  font-weight: 720;
}

.proof-grid span {
  color: var(--ink-3);
  font-size: .71rem;
  line-height: 1.45;
}

.section-intro {
  max-width: 940px;
  margin-bottom: clamp(46px, 6vw, 76px);
}

.section-intro > p:last-child {
  max-width: 640px;
  margin-bottom: 0;
  font-size: 1.1rem;
}

.compact-intro h2 {
  max-width: 900px;
}

.compact-intro h2 span {
  display: block;
}

.conversation-task-flow {
  position: relative;
  display: grid;
  grid-template-columns: minmax(230px, .85fr) minmax(190px, .52fr) minmax(420px, 1.63fr);
  align-items: stretch;
  border-block: 1px solid var(--line-strong);
}

.conversation-flow-start,
.conversation-flow-task,
.task-flow-heading,
.engine-zone-heading {
  display: flex;
  min-width: 0;
}

.conversation-flow-start {
  align-items: center;
  gap: 17px;
  padding: 35px clamp(28px, 3.2vw, 48px) 35px 0;
}

.flow-icon,
.engine-zone-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border: 1px solid color-mix(in srgb, var(--accent) 46%, var(--line));
  border-radius: 14px;
  background: var(--raised);
  color: var(--accent);
}

.flow-label {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: .68rem;
  font-weight: 760;
  letter-spacing: .09em;
  line-height: 1.2;
  text-transform: uppercase;
}

.conversation-task-flow h3 {
  margin-bottom: 10px;
  font-size: clamp(1.12rem, 1.6vw, 1.42rem);
}

.conversation-flow-start > div > p:last-child {
  max-width: 390px;
  margin-bottom: 0;
  font-size: .86rem;
  line-height: 1.5;
}

.conversation-flow-threshold {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 28px clamp(20px, 2.6vw, 40px);
  color: var(--ink-3);
  text-align: center;
}

.threshold-line {
  position: relative;
  order: 2;
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 16px;
  background: var(--line-strong);
}

.threshold-line::before,
.threshold-line::after {
  content: "";
  position: absolute;
}

.threshold-line::before {
  top: -2px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

.threshold-line::after {
  top: -3px;
  right: 0;
  width: 7px;
  height: 7px;
  border-top: 1px solid var(--accent);
  border-right: 1px solid var(--accent);
  transform: rotate(45deg);
}

.threshold-line span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--accent);
  transform-origin: left;
}

.conversation-flow-threshold p {
  order: 1;
  max-width: 230px;
  margin: 0;
  align-self: center;
  font-size: .74rem;
  font-weight: 650;
  line-height: 1.45;
}

.conversation-flow-task {
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding: 30px 0 30px clamp(30px, 3.8vw, 58px);
}

.task-flow-heading {
  align-items: center;
  gap: 17px;
}

.task-flow-heading h3 {
  margin: 0;
}

.task-flow-parts {
  display: block;
  margin: 0;
  padding: 0;
  border-block: 1px solid var(--line);
  list-style: none;
}

.task-flow-parts li {
  display: grid;
  grid-template-columns: minmax(96px, .58fr) minmax(0, 1.42fr);
  align-items: baseline;
  gap: 18px;
  min-width: 0;
  padding: 12px 0;
}

.task-flow-parts li + li {
  border-top: 1px solid var(--line);
}

.task-flow-parts strong,
.task-flow-parts span {
  display: block;
}

.task-flow-parts strong {
  margin-bottom: 0;
  color: var(--ink-1);
  font-size: .79rem;
}

.task-flow-parts span {
  color: var(--ink-3);
  font-size: .72rem;
  line-height: 1.4;
}

@media (prefers-reduced-motion: no-preference) {
  .js .conversation-task-flow .flow-icon,
  .js .conversation-task-flow h3,
  .js .conversation-task-flow p,
  .js .conversation-task-flow .task-flow-parts {
    opacity: .5;
    transform: translateY(5px);
    transition: opacity 380ms ease, transform 380ms cubic-bezier(.2, .82, .2, 1);
  }

  .js .conversation-task-flow .threshold-line span {
    transform: scaleX(0);
    transition: transform 680ms cubic-bezier(.2, .82, .2, 1) 220ms;
  }

  .js .conversation-task-flow .conversation-flow-task > * {
    transition-delay: 520ms;
  }

  .js .conversation-task-flow.is-flowing .flow-icon,
  .js .conversation-task-flow.is-flowing h3,
  .js .conversation-task-flow.is-flowing p,
  .js .conversation-task-flow.is-flowing .task-flow-parts {
    opacity: 1;
    transform: none;
  }

  .js .conversation-task-flow.is-flowing .threshold-line span {
    transform: scaleX(1);
  }
}

.workflow-intro {
  max-width: 820px;
  margin-bottom: clamp(42px, 5.5vw, 68px);
}

.workflow-intro h2 {
  max-width: 780px;
  margin-bottom: 22px;
}

.workflow-intro > p:last-child {
  max-width: 680px;
  margin: 0;
  color: var(--ink-2);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.62;
}

.request-tree {
  position: relative;
}

.request-root {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 18px;
  width: min(100%, 610px);
  min-width: 0;
  margin: 0 auto;
  padding: 22px 24px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-card);
  background: var(--raised);
  box-shadow: var(--shadow-small);
}

.request-root h3 {
  margin: 0;
  font-size: clamp(1.22rem, 1.75vw, 1.52rem);
}

.request-tree-connector {
  position: relative;
  height: 58px;
}

.request-tree-connector::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: var(--line-strong);
  transform: translateX(-50%);
}

.request-outcomes {
  --request-outcome-gap: clamp(24px, 4vw, 58px);
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--request-outcome-gap);
  padding-top: 28px;
}

.request-outcomes::before {
  content: "";
  position: absolute;
  top: 0;
  right: calc((100% - var(--request-outcome-gap)) / 4);
  left: calc((100% - var(--request-outcome-gap)) / 4);
  height: 1px;
  background: var(--line-strong);
}

.request-outcome {
  position: relative;
  min-width: 0;
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--raised);
}

.request-outcome::before {
  content: "";
  position: absolute;
  top: -29px;
  left: 50%;
  width: 1px;
  height: 28px;
  background: var(--line-strong);
}

.request-outcome h3 {
  margin: 0 0 11px;
  font-size: clamp(1.35rem, 2.05vw, 1.82rem);
  letter-spacing: -.035em;
  line-height: 1.08;
}

.request-outcome > p:last-child {
  max-width: 440px;
  margin: 0;
  color: var(--ink-3);
  font-size: clamp(.84rem, 1vw, .94rem);
  line-height: 1.55;
}

.request-outcome-work {
  border-color: color-mix(in srgb, var(--accent) 26%, var(--line));
  background: linear-gradient(145deg, color-mix(in srgb, var(--accent) 5%, var(--raised)), var(--raised) 68%);
}

.task-management {
  display: grid;
  gap: 0;
}

.task-management > *,
.task-management-copy,
.task-management-product {
  min-width: 0;
}

.task-management-intro {
  max-width: none;
}

.task-management-intro h2 {
  margin-bottom: 18px;
  font-size: clamp(2.55rem, 3.4vw, 3.8rem);
}

.task-management-intro .section-lede {
  max-width: 390px;
  margin-bottom: 0;
}

.task-management-body {
  --task-cockpit-gap: clamp(40px, 4.5vw, 76px);
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(0, 2fr);
  align-items: stretch;
  column-gap: var(--task-cockpit-gap);
  row-gap: 0;
  min-width: 0;
}

.task-management-copy {
  display: flex;
  flex-direction: column;
  align-self: stretch;
}

.task-management-product {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  align-items: start;
  align-self: stretch;
}

.task-benefits {
  display: grid;
  grid-template-columns: 1fr;
  justify-self: stretch;
  width: 100%;
  min-width: 0;
  margin-top: clamp(30px, 3.5vw, 48px);
  border-top: 1px solid var(--line-strong);
}

.task-benefits article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 15px;
  min-width: 0;
  padding: clamp(21px, 2.2vw, 30px) 0;
  border-bottom: 1px solid var(--line-strong);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid color-mix(in srgb, var(--accent) 30%, var(--line));
  border-radius: 11px;
  background: color-mix(in srgb, var(--accent-soft) 42%, transparent);
  color: var(--accent);
}

.task-benefits p {
  margin-bottom: 0;
  font-size: .86rem;
  line-height: 1.5;
}

.feature-visual {
  margin: 0;
}

.task-management-visual {
  justify-self: stretch;
  width: 100%;
  min-width: 0;
  margin-top: 0;
}

.task-preview-toolbar {
  display: flex;
  justify-content: center;
  width: 100%;
  min-height: 50px;
  margin-bottom: 10px;
}

.task-view-switch {
  align-self: end;
  display: inline-grid;
  grid-template-columns: repeat(3, minmax(96px, 1fr));
  padding: 3px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: color-mix(in srgb, var(--raised) 76%, var(--sunken));
}

.task-view-switch[hidden] {
  display: none;
}

.task-view-switch button {
  min-height: 44px;
  padding: 0 16px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--ink-3);
  font-size: .82rem;
  font-weight: 680;
  transition: background-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.task-view-switch button[aria-selected="true"] {
  background: var(--raised);
  color: var(--ink);
  box-shadow: var(--shadow-small);
}

.task-view-switch button:disabled {
  cursor: wait;
  opacity: .58;
}

.task-preview-stage {
  width: 100%;
  min-width: 0;
}

.task-preview-scroll {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  height: min(70vw, 720px);
  min-height: 270px;
  overflow: hidden;
  background: var(--product-preview-canvas);
}

.wide-product {
  border-radius: calc(var(--radius-panel) + 2px);
}

.use-cases-heading,
.model-heading,
.pricing-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .55fr);
  align-items: end;
  gap: clamp(44px, 8vw, 150px);
  margin-bottom: clamp(50px, 6vw, 82px);
}

.use-cases-heading h2,
.model-heading h2,
.pricing-heading h2 {
  max-width: 930px;
  margin-bottom: 0;
}

.use-cases-heading > p,
.model-heading > p,
.pricing-heading > p {
  margin-bottom: 5px;
  font-size: 1.02rem;
  line-height: 1.55;
}

.use-case-focus {
  display: flex;
  align-items: stretch;
  gap: 12px;
  min-height: 560px;
}

.use-case-panel {
  display: flex;
  min-width: 0;
  flex: 1 1 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-card);
  background: color-mix(in srgb, var(--sunken) 66%, transparent);
}

.use-case-panel.is-active {
  flex: 2.9 1 0;
  border-color: color-mix(in srgb, var(--accent) 48%, var(--line));
  background: var(--raised);
  box-shadow: var(--shadow-small);
}

.use-case-panel h3 {
  margin: 0;
}

.case-trigger {
  display: flex;
  align-items: flex-start;
  width: 100%;
  min-height: 168px;
  gap: 15px;
  padding: 24px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
}

.case-trigger:hover .case-glyph,
.case-trigger:focus-visible .case-glyph,
.use-case-panel.is-active .case-glyph {
  border-color: color-mix(in srgb, var(--accent) 54%, var(--line));
  background: var(--accent-soft);
  color: var(--accent-soft-ink);
}

.case-trigger:focus-visible {
  box-shadow: inset 0 0 0 3px color-mix(in srgb, var(--accent) 24%, transparent);
}

.case-glyph {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  color: var(--ink-2);
  transition: background-color 170ms ease, border-color 170ms ease, color 170ms ease;
}

.case-trigger-copy {
  display: grid;
  min-width: 0;
  gap: 10px;
}

.case-label {
  color: var(--ink-3);
  font-size: .67rem;
  font-weight: 740;
  letter-spacing: .09em;
  line-height: 1.25;
  text-transform: uppercase;
}

.case-title {
  display: block;
  font-size: clamp(.98rem, 1.25vw, 1.22rem);
  font-weight: 600;
  letter-spacing: -.027em;
  line-height: 1.22;
}

.case-selector-title {
  display: none;
}

.use-case-panel.is-active .case-title {
  max-width: 650px;
  font-size: clamp(1.45rem, 2.15vw, 2.25rem);
  letter-spacing: -.04em;
  line-height: 1.08;
}

.case-arrow {
  width: 16px;
  height: 16px;
  margin: 13px 0 0 auto;
  color: var(--ink-3);
  transition: opacity 170ms ease, transform 170ms ease;
}

.use-case-panel.is-active .case-arrow {
  color: var(--accent);
  transform: rotate(90deg);
}

.case-body {
  display: grid;
  gap: 24px;
  height: 100%;
  padding: 0 28px 28px;
  animation: case-reveal 230ms ease both;
}

.case-body[hidden] {
  display: none;
}

@keyframes case-reveal {
  from { opacity: 0; transform: translateY(7px); }
  to { opacity: 1; transform: translateY(0); }
}

.case-detail-header {
  display: grid;
  gap: 15px;
}

.case-detail-heading {
  display: none;
}

.case-detail-description {
  max-width: 690px;
  margin-bottom: 0;
  color: var(--ink-2);
  font-size: .9rem;
}

.case-diagram {
  display: grid;
  grid-template-columns: minmax(96px, .8fr) 18px minmax(136px, 1.2fr) 18px minmax(118px, 1fr);
  align-items: center;
  gap: 8px;
  min-height: 250px;
  padding: clamp(18px, 2.5vw, 34px);
  border: 1px solid var(--line);
  border-radius: 14px;
  background:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px),
    var(--sunken);
  background-size: 32px 32px;
}

.diagram-stack {
  display: grid;
  gap: 8px;
}

.diagram-stack span,
.diagram-output-pair span {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  padding: 10px;
  border: 1px solid var(--line-strong);
  border-radius: 9px;
  background: var(--raised);
  color: var(--ink-2);
  font-size: .7rem;
  font-weight: 650;
  box-shadow: 0 2px 8px color-mix(in srgb, var(--ink) 6%, transparent);
}

.diagram-stack .icon,
.diagram-output-pair .icon {
  width: 15px;
  height: 15px;
  color: var(--accent);
}

.diagram-arrow {
  width: 17px;
  height: 17px;
  color: var(--accent);
}

.diagram-stage,
.diagram-output {
  display: grid;
  justify-items: start;
  gap: 8px;
  padding: 17px;
  border: 1px solid color-mix(in srgb, var(--accent) 40%, var(--line));
  border-radius: 12px;
  background: color-mix(in srgb, var(--raised) 92%, transparent);
}

.diagram-stage > .icon,
.diagram-output > .icon {
  width: 22px;
  height: 22px;
  color: var(--accent);
}

.diagram-stage strong,
.diagram-output strong {
  font-size: .77rem;
  line-height: 1.25;
}

.diagram-stage span,
.diagram-output > span {
  color: var(--ink-3);
  font-size: .65rem;
  line-height: 1.4;
}

.diagram-output-pair {
  align-content: center;
  gap: 8px;
  border-color: var(--line-strong);
  background: color-mix(in srgb, var(--raised) 76%, transparent);
}

@media (min-width: 1241px) {
  .task-management-body {
    width: 100%;
    margin-inline: auto;
  }

  .use-case-focus {
    display: grid;
    grid-template-columns: minmax(250px, .29fr) minmax(0, .71fr);
    grid-template-rows: repeat(4, minmax(0, 1fr));
    gap: 12px 24px;
  }

  .use-case-panel,
  .use-case-panel.is-active {
    display: contents;
  }

  .use-case-panel > h3 {
    grid-column: 1;
    min-width: 0;
  }

  .use-case-panel:nth-child(1) > h3 { grid-row: 1; }
  .use-case-panel:nth-child(2) > h3 { grid-row: 2; }
  .use-case-panel:nth-child(3) > h3 { grid-row: 3; }
  .use-case-panel:nth-child(4) > h3 { grid-row: 4; }

  .case-trigger {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 16px;
    align-items: center;
    width: 100%;
    height: 100%;
    min-height: 0;
    gap: 14px;
    padding: 18px 20px;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-card);
    background: color-mix(in srgb, var(--sunken) 66%, transparent);
    transition: background-color 170ms ease, border-color 170ms ease, box-shadow 170ms ease;
  }

  .case-trigger:hover {
    border-color: color-mix(in srgb, var(--accent) 32%, var(--line-strong));
    background: color-mix(in srgb, var(--raised) 72%, var(--sunken));
  }

  .use-case-panel.is-active .case-trigger {
    border-color: color-mix(in srgb, var(--accent) 45%, var(--line));
    background: color-mix(in srgb, var(--accent-soft) 34%, var(--raised));
    box-shadow: inset 3px 0 0 var(--accent), var(--shadow-small);
  }

  .case-trigger-copy {
    gap: 6px;
  }

  .case-selector-title {
    display: block;
    font-size: clamp(.93rem, 1.16vw, 1.08rem);
    font-weight: 620;
    letter-spacing: -.025em;
    line-height: 1.22;
  }

  .case-trigger .case-title {
    display: none;
  }

  .case-arrow,
  .use-case-panel.is-active .case-arrow {
    margin: 0 0 0 auto;
    transform: none;
  }

  .case-body {
    grid-column: 2;
    grid-row: 1 / 5;
    grid-template-rows: auto minmax(0, 1fr);
    min-width: 0;
    min-height: 0;
    height: 100%;
    gap: 24px;
    padding: 28px;
    overflow: hidden;
    border: 1px solid color-mix(in srgb, var(--accent) 45%, var(--line));
    border-radius: var(--radius-card);
    background: var(--raised);
    box-shadow: var(--shadow-small);
  }

  .case-detail-header {
    gap: 14px;
  }

  .case-detail-heading {
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .case-detail-glyph {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    flex: 0 0 auto;
    border: 1px solid color-mix(in srgb, var(--accent) 54%, var(--line));
    border-radius: 14px;
    background: var(--accent-soft);
    color: var(--accent-soft-ink);
  }

  .case-detail-glyph .icon {
    width: 24px;
    height: 24px;
  }

  .case-detail-title {
    margin: 5px 0 0;
    color: var(--ink);
    font-size: clamp(1.55rem, 2.15vw, 2.35rem);
    font-weight: 620;
    letter-spacing: -.045em;
    line-height: 1.08;
    text-wrap: balance;
  }

  .case-detail-description {
    max-width: 820px;
    font-size: .9rem;
    line-height: 1.5;
  }

  .case-diagram {
    height: 100%;
    min-height: 0;
  }
}

.data-layout {
  display: block;
}

.data-story-topline {
  min-width: 0;
}

.connected-work-figure {
  width: 100%;
  min-width: 0;
  margin: 0;
}

.story-status {
  display: grid;
  grid-template-columns: minmax(205px, 220px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(26px, 2.8vw, 44px);
  min-height: 88px;
  margin-bottom: 12px;
  padding: 17px 22px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: color-mix(in srgb, var(--raised) 84%, transparent);
}

.story-status-copy {
  display: grid;
  min-width: 0;
  gap: 5px;
}

.story-status-state-line {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 8px;
}

.story-status-spinner {
  position: relative;
  display: inline-flex;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 2px solid color-mix(in srgb, var(--accent) 32%, var(--line));
  border-radius: 50%;
}

.story-status-spinner::after {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
}

@keyframes story-status-spin {
  to { transform: rotate(1turn); }
}

.story-status[data-state="playing"] .story-status-spinner {
  border-color: color-mix(in srgb, var(--accent) 22%, var(--line));
  border-top-color: var(--accent);
  animation: story-status-spin 820ms linear infinite;
}

.story-status[data-state="playing"] .story-status-spinner::after {
  opacity: 0;
}

.story-status[data-state="paused"] .story-status-spinner {
  border-color: var(--line-strong);
}

.story-status[data-state="paused"] .story-status-spinner::after {
  width: 2px;
  height: 7px;
  border-radius: 1px;
  background: var(--ink-3);
  box-shadow: 4px 0 0 var(--ink-3);
  transform: translateX(-2px);
}

.story-status[data-state="complete"] .story-status-spinner {
  border-color: color-mix(in srgb, var(--accent) 48%, var(--line));
  background: var(--accent-soft);
}

.story-status[data-state="complete"] .story-status-spinner::after {
  width: 8px;
  height: 4px;
  border-bottom: 2px solid var(--accent-soft-ink);
  border-left: 2px solid var(--accent-soft-ink);
  border-radius: 0;
  background: transparent;
  transform: translateY(-1px) rotate(-45deg);
}

.story-status-kicker {
  color: var(--accent);
  font-size: .72rem;
  font-weight: 760;
  letter-spacing: .09em;
  line-height: 1.2;
  text-transform: uppercase;
}

.story-status-copy strong {
  overflow: hidden;
  font-size: .94rem;
  font-weight: 680;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.story-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  width: 100%;
  min-width: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.story-steps::before,
.story-steps::after {
  content: "";
  position: absolute;
  top: 13px;
  right: 12.5%;
  left: 12.5%;
  height: 2px;
  border-radius: 999px;
}

.story-steps::before {
  background: var(--line-strong);
}

.story-steps::after {
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 560ms cubic-bezier(.16, 1, .3, 1);
}

.story-steps[data-active-step="1"]::after {
  transform: scaleX(.3333);
}

.story-steps[data-active-step="2"]::after {
  transform: scaleX(.6667);
}

.story-steps[data-active-step="3"]::after {
  transform: scaleX(1);
}

.story-steps li {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 9px;
  min-width: 0;
  color: var(--ink-3);
  font-size: clamp(.9rem, .95vw, 1rem);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transition: color 260ms ease;
}

.story-step-label {
  white-space: nowrap;
}

.story-step-marker {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border: 1.5px solid var(--line-strong);
  border-radius: 50%;
  background: var(--raised);
  transition: border-color 260ms ease, background-color 260ms ease, transform 360ms cubic-bezier(.16, 1, .3, 1);
}

.story-step-marker::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  opacity: 0;
  transform: scale(.7);
}

@keyframes story-step-enter {
  0% { opacity: .45; transform: scale(.72); }
  64% { opacity: 1; transform: scale(1.1); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes story-step-breathe {
  0%, 100% { opacity: .46; transform: scale(.82); }
  50% { opacity: 1; transform: scale(1); }
}

@keyframes story-step-label-enter {
  from { opacity: .55; transform: translateY(3px); }
  to { opacity: 1; transform: translateY(0); }
}

.story-steps li[data-state="complete"] {
  color: var(--ink-2);
}

.story-steps li[data-state="complete"] .story-step-marker {
  border-color: color-mix(in srgb, var(--accent) 50%, var(--line));
  background: var(--accent-soft);
  animation: story-step-enter 420ms cubic-bezier(.16, 1, .3, 1) both;
}

.story-steps li[data-state="complete"] .story-step-marker::after {
  content: "";
  width: 9px;
  height: 5px;
  border-bottom: 2px solid var(--accent-soft-ink);
  border-left: 2px solid var(--accent-soft-ink);
  transform: translateY(-1px) rotate(-45deg);
}

.story-steps li[data-state="active"] {
  color: var(--accent);
}

.story-steps li[data-state="active"] .story-step-label {
  animation: story-step-label-enter 360ms cubic-bezier(.16, 1, .3, 1) both;
}

.story-steps li[data-state="active"] .story-step-marker {
  border-color: var(--accent);
  animation: story-step-enter 420ms cubic-bezier(.16, 1, .3, 1) both;
}

.story-steps li[data-state="active"] .story-step-marker::before {
  animation: story-step-breathe 1.7s ease-in-out 380ms infinite;
}

.story-steps li[data-state="active"] .story-step-marker::after {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.story-status[data-state="paused"] .story-status-kicker {
  color: var(--ink-3);
}

.story-status[data-state="paused"] .story-steps li[data-state="active"] .story-step-marker::before {
  animation-play-state: paused;
}

.story-status[data-state="complete"] {
  border-color: color-mix(in srgb, var(--accent) 34%, var(--line));
}

.story-status[data-state="complete"] .story-status-kicker {
  color: var(--accent);
}

.story-status[data-state="complete"] .story-steps li[data-state="active"] .story-step-marker::before {
  animation: none;
  opacity: .58;
  transform: scale(1);
}

.data-copy {
  max-width: 900px;
  margin-bottom: clamp(34px, 4vw, 54px);
}

.connected-work-stage {
  min-width: 0;
  border-radius: 18px;
  box-shadow: var(--shadow-small);
}

.connected-work-meta-row,
.connected-work-availability,
.story-replay {
  display: flex;
  align-items: center;
}

.connected-work-meta-row {
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 10px;
}

.story-replay {
  flex: 0 0 auto;
  gap: 6px;
  min-height: 31px;
  padding: 5px 9px;
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
  background: color-mix(in srgb, var(--raised) 72%, transparent);
  color: var(--ink-2);
  font-size: .71rem;
  font-weight: 680;
  line-height: 1;
  transition: border-color 170ms ease, background-color 170ms ease, color 170ms ease, transform 170ms ease;
}

.story-replay[hidden] {
  display: none;
}

.story-replay:hover {
  border-color: color-mix(in srgb, var(--accent) 42%, var(--line));
  background: var(--raised);
  color: var(--accent);
}

.story-replay:active {
  transform: translateY(1px);
}

.story-replay .icon,
.connected-work-availability .icon {
  width: 14px;
  height: 14px;
}

.connected-work-availability {
  flex-wrap: wrap;
  gap: 7px;
  color: var(--ink-3);
  font-size: .69rem;
  font-weight: 620;
}

.connected-work-availability .icon {
  color: var(--accent);
}

.connected-work-availability .status {
  min-height: 20px;
  padding: 3px 7px;
  font-size: .59rem;
}

.data-copy h2 {
  max-width: 900px;
}

.models {
  padding-bottom: clamp(86px, 9vw, 145px);
}

.engine-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-block: 1px solid var(--line-strong);
  background: transparent;
}

.engine-zone {
  --engine-padding: clamp(34px, 4vw, 58px);
  position: relative;
  min-width: 0;
  padding: var(--engine-padding);
  overflow: clip;
  background: var(--raised);
}

.engine-local {
  border-right: 1px solid var(--line-strong);
}

.engine-local::before {
  content: "";
  position: absolute;
  top: -1px;
  left: var(--engine-padding);
  width: 108px;
  height: 3px;
  background: var(--accent);
}

.engine-cloud {
  background: var(--raised);
}

.engine-zone-heading {
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 31px;
}

.engine-zone-heading h3 {
  max-width: 480px;
  margin: 0;
  color: var(--ink-1);
  font-size: clamp(1.4rem, 2vw, 1.95rem);
  line-height: 1.12;
}

.engine-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: color-mix(in srgb, var(--raised) 82%, transparent);
}

.engine-option {
  min-width: 0;
  padding: 22px;
}

.engine-option:nth-child(2) {
  border-right: 1px solid var(--line);
}

.engine-managed {
  grid-column: 1 / -1;
  margin: 0;
  padding: 22px;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--accent-soft) 26%, transparent);
}

.engine-option-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.engine-option-topline strong {
  color: var(--ink-1);
  font-size: .92rem;
}

.engine-option p,
.engine-cloud-body > p {
  margin-bottom: 0;
  font-size: .82rem;
  line-height: 1.5;
}

.engine-cloud-body {
  margin-left: 60px;
}

.engine-cloud-status {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.engine-brand-catalog {
  margin-top: 19px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
}

.engine-brand-label {
  margin: 0 0 13px;
  color: var(--ink-3);
  font-size: .61rem;
  font-weight: 740;
  letter-spacing: .08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.engine-option .engine-brand-label {
  margin: 0 0 13px;
  font-size: .61rem;
  line-height: 1.2;
}

.engine-brand-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 16px 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.engine-brand-list .model-logo {
  justify-content: center;
  width: 100%;
}

.engine-brand-list .model-lockup {
  max-width: 100%;
}

.engine-brand-list .model-lockup-paired {
  grid-template-columns: 20px minmax(0, 1fr);
}

.engine-brand-list .model-lockup img,
.engine-brand-list .model-lockup-wordmark {
  max-width: 100%;
}

.engine-brand-list .model-lockup-provider img {
  height: 13px;
}

.price-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.status {
  display: inline-flex;
  align-items: center;
  width: max-content;
  min-height: 25px;
  padding: 4px 9px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--ink-2);
  background: color-mix(in srgb, var(--raised) 50%, transparent);
  font-size: .65rem;
  font-weight: 730;
  letter-spacing: .025em;
  line-height: 1;
  white-space: nowrap;
}

.status-now {
  border-color: color-mix(in srgb, var(--accent) 40%, transparent);
  background: var(--accent-soft);
  color: var(--accent-soft-ink);
}

.engine-cloud-points {
  margin: 19px 0 0;
  padding: 0;
  list-style: none;
}

.price-card ul {
  margin-bottom: 0;
  padding: 0;
  list-style: none;
}

.engine-cloud-points li,
.price-card li {
  position: relative;
  padding: 10px 0 10px 18px;
  border-top: 1px solid var(--line);
  color: var(--ink-2);
  font-size: .82rem;
}

.engine-cloud-points li::before,
.price-card li::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 1px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

.qualification-note {
  max-width: 730px;
  margin: 19px 0 0 auto;
  text-align: right;
}

.platforms {
  --section-background: var(--platform-bg);
  overflow: hidden;
  color: var(--platform-ink);
}

.platforms::before {
  border-top-color: color-mix(in srgb, var(--platform-muted) 24%, transparent);
}

.platforms::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: -42%;
  right: -8%;
  width: min(48vw, 860px);
  height: min(48vw, 860px);
  border: 1px solid rgba(151, 244, 229, .14);
  border-radius: 50%;
  box-shadow: 0 0 0 7vw rgba(151, 244, 229, .025), 0 0 0 14vw rgba(151, 244, 229, .018);
  pointer-events: none;
}

.platform-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(450px, 1.05fr);
  align-items: center;
  gap: clamp(60px, 9vw, 160px);
}

.platform-wordmark {
  display: flex;
  align-items: center;
  margin: 0 0 clamp(30px, 3vw, 42px);
  color: #d9fff9;
  font-size: clamp(5.5rem, 8vw, 8.5rem);
  font-weight: 760;
  letter-spacing: -.09em;
  line-height: .78;
}

.platform-wordmark svg {
  flex: 0 0 auto;
  width: .82em;
  height: .82em;
  margin-right: .03em;
}

.platform-wordmark .brand-arch {
  fill: #76e8d8;
}

.platform-wordmark .brand-basin {
  fill: #d9fff9;
}

.platform-copy h2,
.platform-copy h3,
.platform-copy p,
.platform-list h3 {
  color: inherit;
}

.platform-copy h2 {
  max-width: 560px;
  font-size: clamp(2.35rem, 3.5vw, 3.65rem);
}

.platform-copy .eyebrow {
  color: #76e8d8;
}

.platform-copy > p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 30px;
  color: var(--platform-muted);
  font-size: clamp(1.05rem, 1.4vw, 1.24rem);
}

.platform-copy .button-primary {
  background: #ffffff;
  color: #103f3b;
  box-shadow: none;
  white-space: nowrap;
}

.platform-copy .button-primary:hover {
  background: #d9fff9;
}

.platform-list {
  border-top: 1px solid rgba(221, 255, 250, .2);
}

.platform-list article {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 100px;
  border-bottom: 1px solid rgba(221, 255, 250, .2);
}

.platform-list article > div {
  display: flex;
  align-items: center;
  gap: 17px;
}

.platform-icon {
  display: inline-flex;
  flex: 0 0 42px;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(221, 255, 250, .24);
  border-radius: 50%;
  background: transparent;
  color: #d9fff9;
}

.platform-icon .platform-brand-mark {
  width: 19px;
  height: 19px;
  fill: currentColor;
  stroke: none;
}

.platform-list h3 {
  margin-bottom: 4px;
}

.platform-list p {
  margin-bottom: 0;
  color: var(--platform-muted);
  font-size: .76rem;
}

.platform-list .status {
  border-color: rgba(221, 255, 250, .22);
  background: rgba(255, 255, 255, .05);
  color: var(--platform-muted);
}

.platform-list .status-now {
  border-color: #d9fff9;
  background: #d9fff9;
  color: #103f3b;
}

.pricing-heading {
  margin-bottom: clamp(64px, 7vw, 96px);
}

.pricing.pricing-prelaunch {
  min-height: 0;
  padding-block: clamp(48px, 6vw, 78px);
}

.pricing-prelaunch .pricing-heading {
  display: block;
  margin-bottom: clamp(30px, 4vw, 46px);
}

.pricing-prelaunch .pricing-heading h2 {
  max-width: 760px;
}

.pricing-prelaunch .pricing-heading > p {
  max-width: 560px;
  margin: 14px 0 0;
}

.pricing-prelaunch .pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-block: 1px solid var(--line-strong);
  gap: 0;
}

.pricing-prelaunch .price-card {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  min-height: 0;
  padding: clamp(22px, 2.4vw, 32px);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.pricing-prelaunch .price-card + .price-card {
  border-left: 1px solid var(--line-strong);
}

.pricing-prelaunch .price-pro {
  background: color-mix(in srgb, var(--accent-soft) 24%, transparent);
  transform: none;
}

.pricing-prelaunch .price-topline {
  margin-bottom: 14px;
}

.pricing-prelaunch .price-audience {
  min-height: 0;
  margin-bottom: 10px;
  font-size: .8rem;
}

.pricing-prelaunch .price-value {
  min-height: 0;
  margin-bottom: 22px;
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 1.28;
}

.pricing-prelaunch .price-card .button {
  min-height: 40px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1.12fr 1fr;
  align-items: stretch;
  gap: 14px;
}

.price-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: clamp(28px, 3vw, 42px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-card);
  background: color-mix(in srgb, var(--raised) 84%, transparent);
}

.price-pro {
  border-color: color-mix(in srgb, var(--accent) 52%, var(--line));
  background: var(--raised);
  box-shadow: var(--shadow-small);
  transform: translateY(-16px);
}

.price-topline {
  margin-bottom: 26px;
}

.price-topline h3 {
  margin-bottom: 0;
  font-size: 1.4rem;
}

.price-audience {
  min-height: 48px;
  margin-bottom: 20px;
  font-size: .84rem;
}

.price-value {
  min-height: 78px;
  margin-bottom: 24px;
  color: var(--ink);
  font-size: clamp(1.12rem, 1.55vw, 1.42rem);
  font-weight: 590;
  letter-spacing: -.03em;
  line-height: 1.25;
}

.price-card ul {
  margin-bottom: 32px;
}

.price-card .button {
  width: 100%;
  margin-top: auto;
}

.trust-layout {
  display: grid;
  grid-template-rows: auto minmax(280px, 1fr) auto;
  gap: clamp(24px, 3.4vh, 38px);
}

.trust-statement {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
  align-items: end;
  gap: clamp(42px, 8vw, 140px);
}

.trust-statement h2 {
  max-width: 980px;
  margin-bottom: 0;
}

.trust-lede {
  max-width: 560px;
  margin: 0 0 5px;
  font-size: 1rem;
  line-height: 1.55;
}

.trust-map {
  display: grid;
  grid-template-columns: minmax(190px, .92fr) minmax(290px, 1.35fr) minmax(230px, 1.02fr) minmax(190px, .82fr);
  gap: clamp(24px, 2.4vw, 42px);
  min-width: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-stage {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: clamp(18px, 1.8vw, 26px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-card);
  background: color-mix(in srgb, var(--raised) 72%, transparent);
}

.trust-stage:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 48%;
  right: calc(clamp(24px, 2.4vw, 42px) * -.72);
  z-index: 2;
  color: var(--accent);
  font-size: 1.15rem;
  font-weight: 760;
  transform: translate(50%, -50%);
}

.trust-stage-heading {
  display: flex;
  align-items: center;
  gap: 11px;
}

.trust-stage-heading h3 {
  margin: 1px 0 0;
  font-size: clamp(1rem, 1.15vw, 1.22rem);
}

.trust-stage-index {
  display: block;
  color: var(--ink-3);
  font-size: .6rem;
  font-weight: 760;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.trust-stage-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  border: 1px solid color-mix(in srgb, var(--accent) 30%, var(--line));
  border-radius: 11px;
  background: color-mix(in srgb, var(--accent-soft) 42%, transparent);
  color: var(--accent);
}

.trust-stage-icon .icon {
  width: 16px;
  height: 16px;
}

.trust-local-assets {
  display: grid;
  gap: 7px;
  margin-top: clamp(22px, 3vh, 34px);
}

.trust-local-assets span {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  padding: 8px 9px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--canvas);
  color: var(--ink-2);
  font-size: .72rem;
  font-weight: 650;
  line-height: 1.25;
}

.trust-local-assets .icon {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  color: var(--accent);
}

.trust-execution-boundary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  margin-top: clamp(22px, 3vh, 34px);
  padding: 12px;
  border: 1px dashed color-mix(in srgb, var(--accent) 48%, var(--line));
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent-soft) 18%, var(--canvas));
}

.trust-execution-boundary > span {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 94px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--raised);
}

.trust-execution-boundary > span:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: -8px;
  z-index: 2;
  color: var(--accent);
  font-size: .72rem;
  transform: translate(50%, -50%);
}

.trust-execution-boundary .icon {
  width: 16px;
  height: 16px;
  margin-bottom: 11px;
  color: var(--accent);
}

.trust-execution-boundary b,
.trust-execution-boundary small {
  max-width: 100%;
  overflow-wrap: anywhere;
}

.trust-execution-boundary b {
  font-size: .7rem;
}

.trust-execution-boundary small {
  margin-top: 3px;
  color: var(--ink-3);
  font-size: .58rem;
}

.trust-annotation {
  display: grid;
  gap: 3px;
  margin: auto 0 0;
  padding-top: 17px;
  color: var(--ink-3);
  font-size: .68rem;
  line-height: 1.4;
}

.trust-annotation strong {
  color: var(--accent);
  font-size: .62rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.trust-stage-decision {
  border-color: color-mix(in srgb, var(--accent) 62%, var(--line));
  background: color-mix(in srgb, var(--accent-soft) 30%, var(--raised));
  box-shadow: inset 0 3px 0 color-mix(in srgb, var(--accent) 70%, transparent);
}

.trust-pending {
  align-self: flex-start;
  margin-top: clamp(20px, 2.7vh, 30px);
  padding: 4px 7px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--warning) 15%, transparent);
  color: var(--warning-ink);
  font-size: .58rem;
  font-weight: 760;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.trust-question {
  margin: 12px 0 0;
  color: var(--ink);
  font-size: clamp(.9rem, 1vw, 1.08rem);
  font-weight: 720;
  letter-spacing: -.02em;
  line-height: 1.3;
}

.trust-decision-evidence {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 14px;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--canvas);
  color: var(--ink-3);
  font-size: .62rem;
  line-height: 1.45;
}

.trust-decision-evidence .icon {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  color: var(--accent);
}

.trust-stage-destination {
  padding: 0;
  border: 0;
  background: transparent;
}

.trust-destination-card {
  flex: 1;
  padding: clamp(18px, 1.8vw, 26px);
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius-card);
  background: color-mix(in srgb, var(--canvas) 66%, transparent);
  opacity: .72;
}

.trust-folder {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: clamp(28px, 4vh, 46px) 0 0;
  color: var(--ink-2);
  font-size: .76rem;
  font-weight: 680;
}

.trust-folder .icon {
  width: 18px;
  height: 18px;
  color: var(--ink-3);
}

.trust-folder span,
.trust-folder small {
  display: block;
}

.trust-folder small {
  margin-top: 3px;
  color: var(--ink-3);
  font-size: .6rem;
  font-weight: 520;
}

.trust-future {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin: 10px 0 0;
  padding: 9px 10px;
  border: 1px solid var(--line);
  border-radius: 9px;
  color: var(--ink-3);
  font-size: .63rem;
  font-weight: 650;
}

.trust-future .icon {
  width: 13px;
  height: 13px;
  color: var(--accent);
}

.trust-future .status {
  min-height: 18px;
  margin-left: auto;
  padding: 2px 6px;
  font-size: .54rem;
}

.trust-evidence-rail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .62fr);
  align-items: center;
  gap: clamp(32px, 6vw, 100px);
  padding: 15px 18px;
  border: 1px solid color-mix(in srgb, var(--accent) 34%, var(--line));
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent-soft) 22%, var(--raised));
}

.trust-evidence-rail > p:first-child {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--ink-2);
  font-size: .76rem;
  font-weight: 690;
}

.trust-evidence-rail > p:first-child .icon {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  color: var(--accent);
}

.trust-evidence-rail .trust-annotation {
  margin: 0;
  padding: 0;
}

.trust-evidence-rail p {
  margin-bottom: 0;
}

.early-access {
  overflow: hidden;
}

.early-access-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .83fr) minmax(480px, 1.17fr);
  align-items: center;
  gap: clamp(60px, 9vw, 160px);
}

.early-access-copy h2 {
  max-width: 700px;
}

.early-access-copy > p {
  max-width: 610px;
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.55;
}

.update-topics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 36px;
  border-block: 1px solid var(--line-strong);
}

.update-topics > span {
  display: grid;
  gap: 5px;
  min-width: 0;
  padding: 18px 16px;
  border-left: 1px solid var(--line-strong);
}

.update-topics > span:first-child {
  padding-left: 0;
  border-left: 0;
}

.update-topics strong {
  color: var(--ink-1);
  font-size: .84rem;
}

.update-topics small {
  color: var(--ink-3);
  font-size: .68rem;
  line-height: 1.35;
}

.interest-form {
  padding: clamp(28px, 4vw, 50px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-panel);
  background: color-mix(in srgb, var(--raised) 90%, transparent);
  box-shadow: var(--shadow-small);
}

.form-honeypot,
.subscription-response-frame {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.interest-form h3 {
  margin-bottom: 28px;
  font-size: clamp(1.55rem, 2.2vw, 2rem);
}

.form-field label {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: .82rem;
  font-weight: 700;
}

.input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.input-row input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-control);
  outline: 0;
  background: var(--canvas);
  color: var(--ink);
  font-size: .94rem;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.input-row input::placeholder {
  color: var(--ink-3);
}

.input-row input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 15%, transparent);
}

.input-row input[aria-invalid="true"] {
  border-color: var(--danger);
}

.form-status {
  margin: 9px 0 0;
  font-size: .76rem;
}

.form-status {
  min-height: 1.3em;
  color: var(--ink);
  font-weight: 650;
}

.interest-form[data-state="error"] .form-status {
  color: var(--danger);
}

.interest-form[data-state="success"] .form-status {
  color: var(--success);
}

.interest-form[data-state="unconfigured"] .form-status {
  color: var(--accent);
}

.interest-form[data-state="loading"] button:disabled {
  cursor: wait;
  opacity: .72;
  transform: none;
}

html:not(.js) .interest-form :disabled {
  cursor: not-allowed;
  opacity: .72;
}

.consent-note {
  margin: 22px 0 0;
}

.early-access-github {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: var(--ink-2);
  font-size: .76rem;
  font-weight: 680;
}

.early-access-github:hover {
  color: var(--accent);
}

.early-access-github .icon {
  width: 16px;
  height: 16px;
}

.assistant-discovery {
  border-top: 1px solid var(--line);
  background: color-mix(in srgb, var(--canvas) 86%, var(--accent-soft));
}

.assistant-discovery-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px 54px;
  align-items: center;
  padding-block: clamp(42px, 6vw, 72px);
}

.assistant-discovery h2 {
  max-width: 720px;
  margin-bottom: 10px;
  font-size: clamp(1.7rem, 3.2vw, 2.8rem);
}

.assistant-discovery p:last-child {
  max-width: 650px;
  margin: 0;
}

.assistant-discovery-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.assistant-discovery-actions .button {
  gap: 8px;
}

.assistant-provider-icon {
  width: 17px;
  height: 17px;
  object-fit: contain;
}

:root[data-theme="dark"] .assistant-provider-icon {
  filter: invert(1);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--canvas);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.65fr) repeat(4, minmax(120px, .65fr));
  gap: clamp(34px, 5vw, 82px);
  padding-block: clamp(64px, 7vw, 100px);
}

.footer-intro > p {
  max-width: 330px;
  margin: 18px 0 20px;
  font-size: .82rem;
}

.footer-github {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-2);
  font-size: .75rem;
  font-weight: 680;
}

.footer-github:hover {
  color: var(--accent);
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
}

.footer-social-icon {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: color-mix(in srgb, var(--canvas) 68%, transparent);
  color: var(--ink-2);
  cursor: default;
}

.footer-social-icon .icon {
  width: 17px;
  height: 17px;
}

.footer-socials > small {
  margin-left: 2px;
  color: var(--ink-3);
  font-size: .59rem;
  letter-spacing: .035em;
}

.footer-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-group h2 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: .74rem;
  font-weight: 740;
  letter-spacing: .07em;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer-group a,
.footer-group > span {
  color: var(--ink-2);
  font-size: .78rem;
}

.footer-group a:hover {
  color: var(--accent);
}

.footer-group > span {
  cursor: default;
}

.footer-group small {
  display: block;
  margin-top: 1px;
  color: var(--ink-3);
  font-size: .59rem;
  letter-spacing: .035em;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 22px;
  border-top: 1px solid var(--line);
}

.footer-bottom p {
  margin-bottom: 0;
  color: var(--ink-3);
  font-size: .68rem;
}

.reveal-enabled [data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 620ms ease, transform 620ms cubic-bezier(.2, .78, .24, 1);
}

.reveal-enabled [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 1241px) {
  .data-story-topline {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(620px, 1.1fr);
    align-items: end;
    gap: clamp(36px, 4vw, 64px);
    margin-bottom: clamp(22px, 2.5vw, 34px);
  }

  .data-story-topline .data-copy,
  .data-story-topline .story-status {
    margin-bottom: 0;
  }
}

@media (min-width: 1241px) and (max-height: 1400px) {
  .features {
    padding-block: clamp(40px, 5.5vh, 68px);
  }

  .use-cases,
  .models {
    padding-block: clamp(44px, 6vh, 72px);
  }

  .data-story {
    padding-block: clamp(32px, 4vh, 44px);
  }

  .data-story-topline {
    margin-bottom: clamp(16px, 2vh, 24px);
  }

  .data-copy .eyebrow {
    margin-bottom: 12px;
  }

  .data-copy h2 {
    font-size: clamp(2.55rem, 3.5vw, 3.7rem);
  }

  .data-copy .section-lede {
    font-size: .98rem;
    line-height: 1.45;
  }

  .connected-work-figure {
    max-width: min(1280px, calc((100svh - 366px) * 1.38));
    margin-inline: auto;
  }

  .task-management-intro h2,
  .use-cases-heading h2 {
    font-size: clamp(2.55rem, 3.5vw, 3.8rem);
  }

  .task-management-intro .section-lede,
  .use-cases-heading > p {
    font-size: .98rem;
    line-height: 1.45;
  }

  .task-management-body {
    margin-top: 14px;
  }

  .task-benefits article {
    padding-block: clamp(15px, 2vh, 22px);
  }

  .task-preview-scroll {
    height: min(52vh, 560px);
    min-height: 360px;
  }

  .use-cases-heading,
  .model-heading {
    margin-bottom: clamp(28px, 3.5vh, 40px);
  }
}

@media (min-width: 701px) {
  .compact-intro {
    max-width: none;
  }

  .compact-intro h2 {
    max-width: none;
    font-size: clamp(2.2rem, 5vw, 4.35rem);
  }

  .compact-intro h2 span {
    white-space: nowrap;
  }
}

@media (min-width: 1800px) {
  .hero-copy,
  .data-copy,
  .platform-copy,
  .early-access-copy {
    max-width: 760px;
  }
}

@media (max-width: 1240px) {
  :root {
    --shell: min(1680px, calc(100% - 48px));
  }

  .use-case-focus {
    display: grid;
    min-height: 0;
  }

  .use-case-panel,
  .use-case-panel.is-active {
    flex: none;
  }

  .case-trigger {
    min-height: 0;
  }

  .case-body {
    height: auto;
  }

  h1 {
    font-size: clamp(3.3rem, 5.2vw, 4.2rem);
  }

  .hero {
    grid-template-columns: minmax(360px, 2fr) minmax(0, 3fr);
    column-gap: 42px;
    row-gap: 24px;
  }

  .task-management-body {
    column-gap: 48px;
  }

  .data-layout {
    gap: 54px;
  }

  .footer-main {
    grid-template-columns: minmax(240px, 1.4fr) repeat(4, minmax(100px, .65fr));
    gap: 32px;
  }
}

@media (max-width: 1100px) and (min-width: 701px) {
  .models {
    padding-block: 64px;
  }

  .model-heading {
    margin-bottom: 36px;
  }

  .engine-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    border-block: 0;
  }

  .engine-zone {
    --engine-padding: 28px;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-card);
    background: var(--raised);
    box-shadow: none;
  }

  .engine-local::before {
    right: auto;
    width: 96px;
  }

  .qualification-note {
    margin-left: 0;
    text-align: left;
  }
}

@media (max-width: 1120px) and (min-width: 901px) {
  .github-button span:last-child,
  .download-button span:last-child {
    display: none;
  }

  .github-button,
  .download-button {
    width: 42px;
    padding: 0;
  }
}

@media (max-width: 1050px) {

  .hero {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 32px;
    row-gap: 24px;
  }

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

  .model-rail-group {
    gap: 10px;
  }

  .model-rail-group + .model-rail-group {
    padding-left: 14px;
  }

  .model-logo-list {
    gap: 10px;
  }

  .model-lockup-paired {
    grid-template-columns: 18px auto;
    gap: 5px;
  }

  .model-lockup-symbol {
    width: 18px;
    height: 18px;
  }

  .model-lockup-wordmark {
    height: 12px;
  }

  .hero-lede {
    font-size: 1rem;
  }

  .data-layout,
  .platform-layout,
  .trust-layout,
  .early-access-layout {
    gap: 45px;
  }

  .story-status {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 14px 16px;
  }

  .story-status-copy {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 12px;
  }

  .price-card {
    padding: 26px;
  }

  .footer-main {
    grid-template-columns: 1.5fr repeat(2, 1fr);
  }

  .footer-intro {
    grid-row: span 2;
  }
}

@media (max-width: 900px) {
  :root {
    --shell: min(1680px, calc(100% - 40px));
  }

  .assistant-discovery-layout {
    grid-template-columns: 1fr;
  }

  .assistant-discovery-actions {
    justify-content: flex-start;
  }

  .js .menu-toggle {
    display: inline-flex;
  }

  .js .site-navigation {
    position: absolute;
    top: calc(100% + 8px);
    right: 20px;
    left: 20px;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: center;
    justify-content: stretch;
    gap: 12px;
    padding: 12px;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-card);
    background: var(--raised);
    box-shadow: var(--shadow-large);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px) scale(.985);
    transform-origin: top;
    visibility: hidden;
    transition: none;
  }

  .js .site-navigation.is-menu-transitioning {
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms;
  }

  .js .site-navigation.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    visibility: visible;
  }

  .js .site-navigation .nav-links {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    min-width: 0;
    gap: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .js .site-navigation .nav-links a {
    padding: 12px;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    color: var(--ink);
    font-size: .9rem;
    text-align: left;
    transition: background-color 160ms ease, box-shadow 160ms ease, color 160ms ease;
    white-space: normal;
  }

  .js .site-navigation .nav-links a:focus-visible,
  .js .site-navigation .nav-links a:active {
    background-color: color-mix(in srgb, var(--accent) 12%, transparent);
    box-shadow: inset 3px 0 0 var(--accent);
    color: var(--accent-hover);
  }

  .js .site-navigation .nav-links a::after {
    display: none;
  }

  .js .site-navigation .nav-actions {
    display: grid;
    grid-template-columns: 42px 1fr 1fr;
  }

  .js .site-navigation .github-button span:last-child,
  .js .site-navigation .download-button span:last-child {
    display: inline;
  }

  .js .site-navigation .github-button,
  .js .site-navigation .download-button {
    width: auto;
    padding-inline: 12px;
  }

  .hero {
    grid-template-columns: 1fr;
    row-gap: 38px;
    min-height: auto;
    padding-block: 72px 16px;
  }

  .model-rail {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }

  .model-rail-group[data-model-placement="local"] {
    padding-right: 0;
  }

  [data-model-placement="local"] .model-logo-list {
    justify-content: center;
    width: 100%;
    max-width: 100%;
    gap: clamp(36px, 8vw, 72px);
  }

  .model-rail-group + .model-rail-group {
    padding: 12px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-visual {
    width: 100%;
    margin: 0;
  }

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

  .proof-grid > div:nth-child(3) {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .proof-grid > div:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .conversation-task-flow {
    grid-template-columns: minmax(220px, .8fr) minmax(160px, .48fr) minmax(360px, 1.35fr);
  }

  .conversation-flow-start {
    padding-right: 24px;
  }

  .conversation-flow-threshold {
    padding-inline: 20px;
  }

  .conversation-flow-task {
    padding-left: 28px;
  }

  .task-management-intro .section-lede {
    max-width: 720px;
  }

  .task-management-body {
    grid-template-columns: 1fr;
    row-gap: 0;
  }

  .task-management-product {
    margin-top: 36px;
  }

  .task-benefits {
    justify-self: stretch;
    width: 100%;
    margin-top: 32px;
    margin-bottom: 0;
  }

  .task-preview-toolbar {
    justify-content: flex-end;
    width: 100%;
    margin-left: 0;
    margin-bottom: 12px;
  }

  .task-management-visual {
    justify-self: stretch;
    width: 100%;
  }

  .data-layout,
  .platform-layout,
  .trust-layout,
  .early-access-layout {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .use-cases-heading,
  .model-heading,
  .pricing-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .use-cases-heading > p,
  .model-heading > p,
  .pricing-heading > p {
    max-width: 680px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .price-pro {
    transform: none;
  }

  .price-audience,
  .price-value {
    min-height: 0;
  }

  html:not(.js) .nav-shell {
    flex-wrap: wrap;
    gap: 8px 18px;
    padding-block: 8px;
  }

  html:not(.js) .site-navigation {
    flex-basis: 100%;
    justify-content: space-between;
    gap: 16px;
  }
}

@media (max-width: 900px) {
  .js .site-navigation .nav-links a:hover {
    background-color: color-mix(in srgb, var(--accent) 9%, transparent);
    box-shadow: inset 3px 0 0 var(--accent);
    color: var(--accent-hover);
  }
}

@media (max-width: 700px) {
  :root {
    --shell: calc(100% - 32px);
    --header-height: 64px;
  }

  .section {
    padding-block: 78px;
  }

  .models {
    padding-block: 60px;
  }

  .platforms {
    padding-block: 26px;
  }

  .platform-layout {
    gap: 28px;
  }

  .model-heading {
    margin-bottom: 32px;
  }

  h1 {
    font-size: clamp(2.35rem, 12vw, 4.35rem);
    line-height: .92;
  }

  h2 {
    font-size: clamp(2.35rem, 11.5vw, 3.7rem);
  }

  .nav-shell {
    min-height: var(--header-height);
  }

  .js .site-navigation {
    right: 16px;
    left: 16px;
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
  }

  .js .site-navigation .nav-actions {
    grid-template-columns: 76px 42px minmax(0, 1fr) minmax(0, 1fr);
  }

  .hero {
    row-gap: 36px;
    padding-block: 53px 16px;
  }

  .hero-kicker {
    flex-wrap: wrap;
    margin-bottom: 22px;
  }

  .hero-lede {
    font-size: 1.01rem;
  }

  .hero-actions .button {
    flex: 1 1 170px;
  }

  .product-stage,
  .interest-form {
    border-radius: 15px;
  }

  .hero-visual figcaption,
  .feature-visual figcaption {
    padding-inline: 2px;
  }

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

  .proof-grid > div,
  .proof-grid > div:first-child,
  .proof-grid > div:nth-child(3) {
    padding: 17px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .proof-grid > div:first-child {
    border-top: 0;
  }

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

  .workflow-intro {
    margin-bottom: 38px;
  }

  .request-root {
    align-items: flex-start;
    width: 100%;
    padding: 20px;
  }

  .request-tree-connector {
    height: 36px;
  }

  .request-tree-connector::before {
    left: 42px;
    transform: none;
  }

  .request-outcomes {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 0 0 0 62px;
  }

  .request-outcomes::before {
    top: 0;
    right: auto;
    bottom: 0;
    left: 42px;
    width: 1px;
    height: auto;
    background: var(--line-strong);
  }

  .request-outcome {
    padding: 22px 20px 24px;
  }

  .request-outcome::before {
    top: 29px;
    left: -20px;
    width: 20px;
    height: 1px;
    background: var(--line-strong);
  }

  .request-outcome:last-child::after {
    content: "";
    position: absolute;
    z-index: 1;
    top: 30px;
    bottom: -1px;
    left: -21px;
    width: 2px;
    background: var(--canvas);
  }

  .request-outcome h3 {
    font-size: clamp(1.3rem, 6.8vw, 1.65rem);
  }

  .conversation-flow-start {
    align-items: flex-start;
    padding: 28px 0;
  }

  .conversation-flow-threshold {
    align-items: center;
    gap: 0;
    padding: 26px 0 30px;
    border-inline: 0;
    border-block: 1px solid var(--line);
    text-align: center;
  }

  .threshold-line {
    width: 1px;
    height: 56px;
    margin: 16px 0 0;
  }

  .threshold-line::before {
    top: 0;
    left: -2px;
  }

  .threshold-line::after {
    top: auto;
    right: -3px;
    bottom: 0;
    border-top: 0;
    border-right: 1px solid var(--accent);
    border-bottom: 1px solid var(--accent);
    transform: rotate(45deg);
  }

  .conversation-flow-threshold p {
    max-width: 260px;
  }

  @media (prefers-reduced-motion: no-preference) {
    .js .conversation-task-flow .threshold-line span {
      transform: scaleY(0);
      transform-origin: top;
    }

    .js .conversation-task-flow.is-flowing .threshold-line span {
      transform: scaleY(1);
    }
  }

  .conversation-flow-task {
    gap: 20px;
    padding: 28px 0;
  }

  .task-flow-parts li {
    grid-template-columns: minmax(96px, .72fr) minmax(0, 1.28fr);
    gap: 16px;
    padding: 14px 0;
  }

  .task-flow-parts strong {
    margin-bottom: 0;
    font-size: .84rem;
  }

  .task-flow-parts span {
    font-size: .74rem;
    line-height: 1.4;
  }

  .data-layout,
  .platform-layout,
  .trust-layout,
  .early-access-layout {
    gap: 44px;
  }

  .story-status {
    grid-template-columns: 1fr;
    gap: 16px;
    min-height: 0;
    padding: 16px;
  }

  .story-status-copy {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 5px;
  }

  .story-status-copy strong {
    white-space: normal;
  }

  .story-steps {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .story-steps::before,
  .story-steps::after {
    top: 14px;
    right: auto;
    bottom: 14px;
    left: 14px;
    width: 2px;
    height: auto;
  }

  .story-steps::after {
    transform: scaleY(0);
    transform-origin: center top;
  }

  .story-steps[data-active-step="1"]::after {
    transform: scaleY(.3333);
  }

  .story-steps[data-active-step="2"]::after {
    transform: scaleY(.6667);
  }

  .story-steps[data-active-step="3"]::after {
    transform: scaleY(1);
  }

  .story-steps li {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    align-items: center;
    justify-items: start;
    min-height: 30px;
    gap: 12px;
    font-size: .9rem;
    text-align: left;
  }

  .case-trigger {
    padding: 20px;
  }

  .case-body {
    padding: 0 20px 20px;
  }

  .case-diagram {
    grid-template-columns: 1fr;
    justify-items: stretch;
    min-height: 0;
  }

  .diagram-arrow {
    justify-self: center;
    transform: rotate(90deg);
  }

  .diagram-stack {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .task-benefits article {
    padding-block: 20px;
  }

  .task-view-switch {
    width: 100%;
  }

  .task-view-switch button {
    padding-inline: 10px;
  }

  .task-benefits article {
    grid-template-columns: 42px 1fr;
  }

  .engine-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    border-block: 0;
  }

  .engine-zone {
    --engine-padding: 22px;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-card);
    background: var(--raised);
    box-shadow: none;
  }

  .engine-local::before {
    right: auto;
    width: 72px;
  }

  .engine-zone-heading {
    margin-bottom: 24px;
  }

  .engine-options {
    grid-template-columns: 1fr;
  }

  .engine-option,
  .engine-managed {
    grid-column: auto;
    margin: 0;
    padding: 18px;
  }

  .engine-option:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .engine-cloud-body {
    margin-left: 0;
  }

  .engine-cloud-points li {
    padding-block: 8px;
  }

  .qualification-note {
    margin-left: 0;
    text-align: left;
  }

  .platform-list article {
    min-height: 82px;
    gap: 14px;
    padding-block: 14px;
  }

  .platform-list article > div {
    min-width: 0;
  }

  .platform-list .status {
    flex: 0 0 auto;
  }

  .update-topics {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .update-topics > span,
  .update-topics > span:first-child {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    padding: 14px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .update-topics > span:first-child {
    border-top: 0;
  }

  .update-topics small {
    max-width: 170px;
    text-align: right;
  }

  .price-card {
    padding: 26px 22px;
  }

  .pricing-prelaunch .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-prelaunch .price-card + .price-card {
    border-top: 1px solid var(--line-strong);
    border-left: 0;
  }

  .input-row {
    grid-template-columns: 1fr;
  }

  .interest-form {
    padding: 24px 18px;
  }

  .footer-main {
    grid-template-columns: repeat(2, 1fr);
    gap: 42px 28px;
  }

  .footer-intro {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }
}

@media (max-width: 600px) {
  .model-rail {
    gap: 12px;
  }

  .model-rail-group {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 10px;
  }

  .model-rail-group + .model-rail-group {
    padding: 12px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .model-logo-list,
  [data-model-placement="cloud"] .model-logo-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    max-width: none;
    gap: 12px 8px;
  }

  [data-model-placement="local"] .model-logo-list {
    justify-content: stretch;
    width: 100%;
    max-width: none;
  }

  .model-logo,
  .model-lockup {
    width: 100%;
  }

  .model-lockup {
    height: 20px;
  }

  .model-lockup-paired {
    grid-template-columns: 18px minmax(0, 1fr);
    width: auto;
    max-width: 100%;
    gap: 4px;
  }

  .model-lockup-symbol {
    width: 18px;
    height: 18px;
  }

  .model-lockup-wordmark {
    width: 100%;
    height: 11px;
  }

  .model-lockup img {
    max-width: 100%;
  }

  .model-lockup-full img {
    height: 20px;
  }

  .model-lockup-provider img {
    height: 14px;
  }
}

@media (max-width: 430px) {
  .js .site-navigation .nav-actions {
    grid-template-columns: 76px 42px minmax(0, 1fr);
  }

  .js .site-navigation .download-button {
    grid-column: 1 / -1;
  }

  .js .site-navigation .github-button,
  .js .site-navigation .download-button {
    gap: 6px;
    padding-inline: 9px;
    font-size: .79rem;
  }

  .hero-kicker {
    gap: 7px;
    font-size: .69rem;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .engine-brand-list-providers {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .platforms {
    padding-block: 20px;
  }

  .platform-layout {
    gap: 24px;
  }

  .platform-list article {
    min-height: 72px;
    padding-block: 8px;
  }

  .platform-list p {
    display: none;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  html:not(.js) .site-navigation {
    flex-wrap: wrap;
  }

  html:not(.js) .nav-actions {
    margin-left: auto;
  }
}

@media (max-width: 999px) {
  .trust-layout {
    grid-template-rows: auto auto auto;
    gap: 30px;
  }

  .trust-map {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }

  .trust-stage:nth-child(2)::after {
    content: "↓";
    top: auto;
    right: auto;
    bottom: -22px;
    left: 50%;
    transform: translate(-50%, 50%);
  }

  .trust-evidence-rail {
    grid-template-columns: minmax(0, 1fr) minmax(280px, .8fr);
    gap: 28px;
  }
}

@media (max-width: 700px) {
  .trust-statement {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .trust-map {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .trust-stage:not(:last-child)::after,
  .trust-stage:nth-child(2)::after {
    content: "↓";
    top: auto;
    right: auto;
    bottom: -23px;
    left: 50%;
    transform: translate(-50%, 50%);
  }

  .trust-execution-boundary {
    grid-template-columns: 1fr;
  }

  .trust-execution-boundary > span {
    min-height: 72px;
  }

  .trust-execution-boundary > span:not(:last-child)::after {
    content: "↓";
    top: auto;
    right: auto;
    bottom: -8px;
    left: 50%;
    transform: translate(-50%, 50%);
  }

  .trust-evidence-rail {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-height: 1280px) and (min-width: 901px) {
  .pricing {
    padding-block: clamp(40px, 5vh, 52px);
  }

  .pricing-heading {
    margin-bottom: clamp(28px, 4vh, 40px);
  }

  .pricing-heading .eyebrow {
    margin-bottom: 10px;
  }

  .pricing-heading h2 {
    font-size: clamp(2.35rem, 3.6vw, 3.55rem);
  }

  .pricing-heading > p {
    font-size: .9rem;
    line-height: 1.4;
  }

  .price-card {
    padding: 22px 24px;
  }

  .pricing-prelaunch .price-card {
    padding: 18px 22px;
  }

  .price-pro {
    transform: translateY(-8px);
  }

  .price-topline {
    margin-bottom: 14px;
  }

  .price-topline h3 {
    font-size: 1.25rem;
  }

  .price-audience {
    min-height: 36px;
    margin-bottom: 10px;
    font-size: .79rem;
    line-height: 1.35;
  }

  .price-value {
    min-height: 52px;
    margin-bottom: 12px;
    font-size: 1.05rem;
    line-height: 1.22;
  }

  .price-card ul {
    margin-bottom: 18px;
  }

  .price-card li {
    padding: 7px 0 7px 16px;
    font-size: .77rem;
    line-height: 1.3;
  }

  .price-card li::before {
    top: 12px;
  }
}

@media (min-width: 1241px) and (max-height: 1000px) {
  .hero,
  .section {
    min-height: calc(100svh - var(--header-height) - 1px);
  }

  .section {
    padding-block: clamp(36px, 5vh, 50px);
  }

  .data-story {
    padding-block: clamp(28px, 4vh, 36px);
  }

  .data-story-topline {
    grid-template-columns: minmax(0, .82fr) minmax(600px, 1.18fr);
    gap: 32px;
    margin-bottom: 14px;
  }

  .data-copy .eyebrow {
    margin-bottom: 10px;
  }

  .data-copy h2 {
    font-size: clamp(2.35rem, 3.5vw, 3.15rem);
  }

  .data-copy .section-lede {
    font-size: .88rem;
    line-height: 1.4;
  }

  .data-story .story-status {
    min-height: 76px;
    gap: 22px;
    padding: 12px 16px;
  }

  .data-story .story-status-copy strong {
    font-size: .85rem;
  }

  .data-story .story-steps li {
    gap: 6px;
    font-size: .82rem;
  }

  .data-story .story-step-marker {
    width: 25px;
    height: 25px;
  }

  .data-story .connected-work-figure {
    max-width: min(900px, calc((100svh - 326px) * 1.38));
  }

  .data-story .connected-work-meta-row {
    margin-top: 8px;
  }

  .hero {
    column-gap: clamp(34px, 4vw, 64px);
    row-gap: 18px;
  }

  .hero-visual {
    width: 100%;
  }

  .workflow {
    display: grid;
    align-content: center;
  }

  .features,
  .data-story,
  .platforms,
  .trust {
    display: flex;
    flex-direction: column;
  }

  .features > .task-management,
  .data-story > .data-layout,
  .platforms > .platform-layout,
  .trust > .trust-layout {
    flex: 1;
  }

  .early-access {
    min-height: 0;
  }

  .task-management {
    grid-template-rows: minmax(0, 1fr);
  }

  .task-management-body {
    position: relative;
    grid-template-rows: minmax(0, 1fr);
    height: 100%;
    margin-top: 0;
  }

  .task-management-copy,
  .task-management-product {
    min-height: 0;
  }

  .task-management-visual,
  .task-preview-stage,
  .task-preview-scroll {
    min-height: 0;
    height: 100%;
  }

  .task-preview-stage {
    display: grid;
    grid-template-rows: 6px minmax(0, 1fr);
  }

  .task-preview-scroll {
    position: relative;
  }

  .task-preview-scroll > .product-preview-home {
    position: absolute;
    inset: 0;
  }

  .use-cases {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
  }

  .models {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
  }

  .pricing {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
  }

  .price-topline h3 {
    font-size: clamp(1.32rem, 1.7vw, 1.5rem);
  }

  .price-audience {
    font-size: .84rem;
    line-height: 1.45;
  }

  .price-value {
    font-size: clamp(1.12rem, 1.45vw, 1.28rem);
    line-height: 1.28;
  }

  .price-card ul {
    display: grid;
    align-content: center;
    flex: 1;
  }

  .price-card li {
    padding-block: 8px;
    font-size: .82rem;
    line-height: 1.4;
  }

  .models {
    padding-bottom: clamp(36px, 5vh, 50px);
  }

  .model-heading {
    margin-bottom: clamp(28px, 3.5vh, 34px);
  }

  .task-management-intro h2,
  .use-cases-heading h2 {
    font-size: clamp(2.65rem, 3.75vw, 3.8rem);
  }

  .task-management-intro h2 {
    font-size: clamp(2.15rem, 2.55vw, 2.65rem);
  }

  .task-management-intro .eyebrow,
  .use-cases-heading .eyebrow {
    margin-bottom: 12px;
  }

  .task-management-intro .section-lede,
  .use-cases-heading > p {
    font-size: .92rem;
    line-height: 1.42;
  }

  .task-management-body {
    --task-cockpit-gap: clamp(40px, 4vw, 64px);
  }

  .task-benefits {
    margin-top: clamp(20px, 2.5vh, 28px);
  }

  .task-benefits article {
    padding-block: clamp(15px, 2vh, 20px);
  }

  .task-benefits p {
    font-size: .82rem;
    line-height: 1.4;
  }

  .task-preview-toolbar {
    z-index: 3;
    margin-bottom: 10px;
  }

  .task-preview-scroll {
    min-height: 344px;
  }

  [data-task-preview-caption] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
  }

  .use-cases-heading {
    margin-bottom: clamp(24px, 3.5vh, 34px);
  }

  .use-case-focus {
    height: 100%;
    min-height: min(56vh, 540px);
  }

  .case-trigger {
    min-height: 0;
    padding: clamp(14px, 1.8vh, 18px);
  }

  .case-body {
    gap: clamp(16px, 2vh, 20px);
    padding: clamp(20px, 2.7vh, 26px);
  }

  .case-detail-description {
    font-size: .84rem;
    line-height: 1.45;
  }

  .case-diagram {
    min-height: 0;
    padding: clamp(16px, 2vh, 24px);
  }
}

@media (min-width: 1480px) and (min-height: 821px) and (max-height: 1000px) {
  .data-story .connected-work-figure {
    max-width: min(960px, calc((100svh - 276px) * 1.38));
  }
}

@media (max-height: 820px) and (min-width: 901px) {
  .features {
    padding-block: 42px;
  }

  .task-management-intro h2 {
    font-size: clamp(2.15rem, 2.55vw, 2.65rem);
  }

  .task-management-intro .eyebrow {
    margin-bottom: 11px;
  }

  .task-management-intro .section-lede {
    font-size: .94rem;
    line-height: 1.45;
  }

  .task-management-body {
    column-gap: var(--task-cockpit-gap);
  }

  .task-benefits article {
    padding-block: 18px;
  }

  .task-preview-scroll {
    height: min(52vh, 560px);
    min-height: 360px;
  }

  .pricing {
    padding-block: 28px;
  }

  .pricing-heading {
    margin-bottom: 22px;
  }

  .price-card {
    padding: 22px 24px;
  }

  .price-topline {
    margin-bottom: 12px;
  }

  .price-audience {
    min-height: 34px;
    margin-bottom: 8px;
  }

  .price-value {
    min-height: 48px;
    margin-bottom: 10px;
  }

  .price-card ul {
    margin-bottom: 14px;
  }

  .price-card li {
    padding-block: 7px;
  }

  .price-card li::before {
    top: 11px;
  }

  .price-card .button {
    min-height: 44px;
  }

  .hero {
    grid-template-rows: minmax(0, 1fr) auto;
    column-gap: 34px;
    row-gap: 16px;
    padding-block: 24px 12px;
  }

  .hero-kicker {
    margin-bottom: 18px;
  }

  .hero h1 {
    margin-bottom: 17px;
    font-size: clamp(3.05rem, 5vw, 4rem);
  }

  .hero-lede {
    margin-bottom: 20px;
    font-size: 1rem;
  }

  .hero-actions {
    margin-bottom: 12px;
  }

}

@media (min-width: 901px) and (max-width: 1240px) and (max-height: 820px) {
  .data-story {
    min-height: calc(100svh - var(--header-height) - 1px);
    padding-block: 16px;
  }

  .data-story-topline {
    margin-bottom: 12px;
  }

  .data-story .data-copy {
    margin-bottom: 14px;
  }

  .data-story .data-copy .eyebrow {
    margin-bottom: 8px;
  }

  .data-story .data-copy h2 {
    font-size: clamp(2.25rem, 4.2vw, 2.75rem);
  }

  .data-story .data-copy .section-lede {
    font-size: .84rem;
    line-height: 1.4;
  }

  .data-story .story-status {
    grid-template-columns: minmax(180px, 200px) minmax(0, 1fr);
    gap: 16px;
    min-height: 68px;
    margin-bottom: 0;
    padding: 10px 14px;
  }

  .data-story .story-status-copy {
    grid-template-columns: 1fr;
    align-items: initial;
    gap: 4px;
  }

  .data-story .story-status-copy strong,
  .data-story .story-steps li {
    font-size: .78rem;
  }

  .data-story .story-step-marker {
    width: 24px;
    height: 24px;
  }

  .data-story .connected-work-figure {
    max-width: min(820px, calc((100svh - 375px) * 1.579));
    margin-inline: auto;
  }

  .data-story .connected-work-meta-row {
    margin-top: 7px;
  }
}

@media (min-width: 1241px) and (max-height: 820px) {
  .features {
    padding-block: 26px;
  }

  .trust {
    padding-block: 35px;
  }

  .data-story .connected-work-figure {
    max-width: min(680px, calc((100svh - 326px) * 1.38));
  }

  .task-preview-scroll {
    height: 100%;
    min-height: 324px;
  }

  .models {
    padding-block: 28px;
  }

  .engine-zone {
    padding-block: clamp(24px, 3vh, 30px);
  }

  .engine-zone-heading {
    margin-bottom: 20px;
  }

  .engine-option {
    padding-block: 17px;
  }

  .qualification-note {
    margin-top: 12px;
  }
}

@media (min-width: 1600px) and (min-height: 1100px) {
  .hero {
    min-height: calc(100svh - var(--header-height) - 1px);
  }

  .workflow,
  .use-cases,
  .models,
  .trust {
    min-height: min(960px, calc(100svh - var(--header-height) - 160px));
  }

  .workflow,
  .use-cases,
  .models {
    display: grid;
    align-content: center;
  }

  .platforms {
    display: grid;
    align-items: center;
    min-height: min(840px, calc(100svh - var(--header-height) - 280px));
  }

  .trust {
    display: grid;
    align-items: center;
  }

  .early-access {
    display: grid;
    align-items: center;
    min-height: min(760px, calc(100svh - var(--header-height) - 360px));
  }
}

@media (prefers-contrast: more) {
  .site-header {
    border-bottom-color: var(--line-strong);
  }

  .js .site-header:not(.is-scrolled) {
    border-bottom-color: transparent;
  }
}

@media (prefers-contrast: more) and (min-width: 901px) {
  .nav-links,
  .site-header.is-scrolled .nav-links {
    border-color: var(--ink-2);
  }
}

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

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

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

  [data-logo-mark] .brand-arch,
  [data-logo-mark] .brand-basin,
  .case-body {
    animation: none !important;
    opacity: 1;
    transform: none;
  }

  .tide-track span {
    animation: none !important;
    transform: scaleX(.6);
  }
}

html:not(.js) [data-theme-toggle],
html:not(.js) [data-story-replay],
html:not(.js) [data-case-trigger] {
  display: none;
}

html:not(.js) .product-frame,
html:not(.js) .connected-work-stage,
html:not(.js) .task-preview-toolbar,
html:not(.js) .task-preview-stage,
html:not(.js) [data-story-status] {
  display: none;
}

html:not(.js) #connected-work-caption.visually-hidden {
  position: static;
  width: auto;
  height: auto;
  margin: 12px 0 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

html:not(.js) .use-case-focus {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: none;
  min-height: 0;
}

html:not(.js) .use-case-panel,
html:not(.js) .use-case-panel.is-active {
  display: block;
  overflow: visible;
}

html:not(.js) .use-case-panel > h3 {
  display: none;
}

html:not(.js) .case-body,
html:not(.js) .case-body[hidden] {
  display: grid;
  grid-column: auto;
  grid-row: auto;
  height: auto;
}

html:not(.js) .case-detail-heading {
  display: flex;
}
