@font-face {
  font-family: 'Aeonik';
  src: url('/type/aeonikvf.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #080b11;
  --bg-start: #0f1729;
  --bg-end: #080b11;
  --bg-raised: #0d1119;
  --text: #f1f4fa;
  --text-soft: #c3cad7;
  --muted: #8791a4;
  --dim: #606a7c;
  --line: rgba(255, 255, 255, 0.15);
  --line-strong: rgba(255, 255, 255, 0.18);
  --primary: #1860ff;
  --primary-bright: #3978ff;
  --primary-deep: #0f4ddb;
  --primary-light: #258ff9;
  --accent: #ff5e00;
  --radius-sm: 8px;
  --radius-card: 8px;
  --radius-header-cta: 6px;
  --shell: 1200px;
  --site-nav-height: 84px;
  --site-nav-border: rgba(255, 255, 255, 0.125);
  --site-nav-shadow: 0 6px 18px rgba(0, 0, 0, 0.16);
  /* Header and footer chrome. Both ends of the page read these, so resizing
     the nav resizes the footer with it instead of drifting apart. */
  --logo-width: 161px;
  --chrome-link-size: 16px;
  --footer-link-size: 14px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}
html,
body {
  margin: 0;
  padding: 0;
}
body {
  min-height: 100vh;
  background: var(--bg-end);
  color: var(--text);
  font-family:
    'Inter',
    system-ui,
    -apple-system,
    sans-serif;
  -webkit-font-smoothing: antialiased;
}
x-dc {
  display: none;
}
::selection {
  background: var(--accent);
  color: var(--bg);
}

a {
  color: inherit;
}
.app-shell {
  background: linear-gradient(
    180deg,
    var(--bg-start) 0%,
    #0b111e 48%,
    var(--bg-end) 100%
  );
  color: var(--text);
  font-family: 'Inter', sans-serif;
  overflow: clip;
}
.page-shell {
  width: min(calc(100% - 64px), var(--shell));
  max-width: none;
  margin-inline: auto;
  padding-inline: 0;
}
.dot-glow-field {
  --dot-glow-color: var(--primary);
  --dot-glow-dot: 1.5px;
  --dot-glow-opacity: 0.72;
  --dot-glow-x: 84%;
  --dot-glow-y: 12%;
  --dot-glow-reach: 70%;
  --dot-glow-pitch: 22px;

  position: relative;
  isolation: isolate;
}
.dot-glow-field::after {
  content: '';
  position: absolute;
  z-index: 0;
  inset: 0;
  background-image: radial-gradient(
    circle,
    var(--dot-glow-color) 0 var(--dot-glow-dot),
    transparent calc(var(--dot-glow-dot) + 0.2px)
  );
  background-size: var(--dot-glow-pitch) var(--dot-glow-pitch);
  opacity: var(--dot-glow-opacity);
  -webkit-mask-image: radial-gradient(
    circle at var(--dot-glow-x) var(--dot-glow-y),
    #000 0%,
    rgba(0, 0, 0, 0.92) 22%,
    rgba(0, 0, 0, 0.5) 43%,
    transparent var(--dot-glow-reach)
  );
  mask-image: radial-gradient(
    circle at var(--dot-glow-x) var(--dot-glow-y),
    #000 0%,
    rgba(0, 0, 0, 0.92) 22%,
    rgba(0, 0, 0, 0.5) 43%,
    transparent var(--dot-glow-reach)
  );
  pointer-events: none;
}
.dot-glow-field > * {
  position: relative;
  z-index: 1;
}
.dot-glow-hero {
  --dot-glow-dot: 1.3px;
  --dot-glow-opacity: 0.55;
  --dot-glow-reach: 60%;
}
.dot-glow-lower-left {
  --dot-glow-x: 4%;
  --dot-glow-y: 92%;
  --dot-glow-reach: 68%;
}
.dot-glow-upper-left {
  --dot-glow-x: 0%;
  --dot-glow-y: 0%;
  --dot-glow-reach: 62%;
}
.dot-glow-upper-right {
  --dot-glow-x: 100%;
  --dot-glow-y: 0%;
  --dot-glow-reach: 62%;
}
.dot-glow-white {
  --dot-glow-color: rgba(255, 255, 255, 0.92);
  --dot-glow-opacity: 0.26;
}
.feather {
  display: block;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.site-logo {
  display: block;
  width: var(--logo-width);
  height: auto;
}
.site-logo--footer {
  /* Footer mark has always run a touch tighter than the header's. */
  width: calc(var(--logo-width) * 0.93);
  margin-left: -8px;
}
.site-logo--nav-brandmark {
  display: none;
}
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  min-height: 84px;
  padding: 16px max(32px, calc((100vw - var(--shell)) / 2));
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  background: #000;
  border-bottom: 1px solid var(--site-nav-border);
  box-shadow: var(--site-nav-shadow);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.brand-link {
  position: relative;
  /* Above the menu panel, which covers the whole screen including this bar. */
  z-index: 1;
  display: inline-flex;
  width: max-content;
}

/* The compact menu control only exists below the breakpoint. */
.nav-toggle {
  display: none;
}

/* Wide layout keeps the links and the button as direct children of the nav's
   three-column grid — the wrappers exist for the mobile panel and are
   invisible to layout until then. */
.nav-menu,
.nav-menu-footer {
  display: contents;
}
.nav-menu-social {
  display: none;
}
.nav-links {
  --underline-in: left center;
  --underline-out: right center;
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 30px);
}
.nav-links.is-reversed {
  --underline-in: right center;
  --underline-out: left center;
}
.nav-link {
  position: relative;
  padding: 12px 0;
  color: var(--muted);
  text-decoration: none;
  font:
    450 var(--chrome-link-size)/1 'Aeonik',
    sans-serif;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: color 160ms ease;
}
/* The underline is a pseudo-element rather than a border so hover can wipe it
   in from the left instead of just switching it on. */
.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  /* The active direction controls which edge draws in and which edge retracts. */
  transform-origin: var(--underline-out);
  transition: transform 260ms ease;
}
/* Hover-driven states are gated behind a real pointer. On a touch screen the
   :hover sticks after a tap, so the last thing tapped stays lit. */
@media (hover: hover) {
  .nav-link:hover {
    color: var(--text);
  }
  .nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: var(--underline-in);
  }
}
.nav-link:focus-visible {
  color: var(--text);
}
.nav-link:focus-visible::after {
  transform: scaleX(1);
  transform-origin: var(--underline-in);
}
.nav-link.is-active,
.nav-link[aria-current='location'] {
  color: #fff;
}
.nav-link.is-active::after,
.nav-link[aria-current='location']::after {
  transform: scaleX(1);
  transform-origin: var(--underline-in);
}
/* Both Book a Demo buttons share one shape; each end of the page sets its own
   scale through the --cta-* values, so there is a single rule to edit when the
   shape changes and one line to edit when a size does. */
.nav-demo-cta,
.footer-demo-cta {
  min-height: var(--cta-height);
  padding: 0 var(--cta-padding-inline);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--cta-gap);
  border-radius: 4px;
  font-family: 'Aeonik', sans-serif;
  font-size: var(--cta-font-size);
  font-weight: 450;
  letter-spacing: -0.015em;
  line-height: 1;
  text-decoration: none;
  text-transform: none;
  white-space: nowrap;
  transition:
    color 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}
.nav-demo-cta svg,
.footer-demo-cta svg {
  width: var(--cta-icon-size);
  height: var(--cta-icon-size);
}

.nav-demo-cta {
  --cta-height: 34px;
  --cta-padding-inline: 16px;
  --cta-gap: 8px;
  --cta-font-size: 12px;
  --cta-icon-size: 14px;
  justify-self: end;
  color: var(--primary-light);
  background: transparent;
  border: 1px solid var(--primary-light);
  border-radius: var(--radius-header-cta);
}
@media (hover: hover) {
  .nav-demo-cta:hover {
    color: #fff;
    background: transparent;
    border-color: #fff;
  }
}
.nav-demo-cta:focus-visible,
.nav-demo-cta:active {
  color: #fff;
  background: transparent;
  border-color: #fff;
}
.nav-demo-cta.is-active,
.nav-demo-cta[aria-current='location'] {
  color: #fff;
  background: var(--primary-bright);
  border-color: var(--primary-bright);
  box-shadow: 0 0 0 3px rgba(57, 120, 255, 0.2);
}

.button {
  min-height: 52px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border-radius: var(--radius-sm);
  font:
    450 15px/1 'Aeonik',
    sans-serif;
  letter-spacing: -0.015em;
  text-transform: none;
  text-decoration: none;
  cursor: pointer;
  transition: background 180ms ease;
}
.button svg {
  width: 17px;
  height: 17px;
}
.button-demo {
  min-height: 58px;
  padding-inline: 26px;
  font-size: 16px;
}
.button-primary {
  background: var(--primary);
  color: #fff;
  border: 1px solid var(--primary);
}
@media (hover: hover) {
  .button-primary:hover {
    background: var(--primary-bright);
  }
}
.button-primary:active {
  background: var(--primary-deep);
}

.button-secondary {
  background: var(--primary);
  color: #fff;
  border: 1px solid var(--primary);
  min-height: 35px;
  padding-inline: 18px;
  font-size: 16px;
  margin-top: 10px;
}
@media (hover: hover) {
  .button-secondary:hover {
    background: var(--primary-bright);
  }
}
.button-secondary:active {
  background: var(--primary-deep);
}

.button:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(90, 138, 255, 0.82);
  outline-offset: 3px;
}

.heading-seo {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.heading-display {
  margin: 0 0 28px;
  max-width: 740px;
  color: var(--text);
  font:
    520 60px/1.02 'Aeonik',
    sans-serif;
  font-size: clamp(28px, 9cqw, 60px);
  letter-spacing: -0.045em;
  font-feature-settings: 'ss05';
  text-wrap: balance;
}
.heading-section {
  margin: 0;
  -webkit-text-stroke: 1px var(--text);
  font:
    350 clamp(38px, 3.6vw, 42px) / 1.02 'Aeonik',
    sans-serif;
  letter-spacing: -0.015em;
  text-wrap: balance;
}
.heading-section-inverse {
  color: #fff;
}
.heading-card {
  margin: 0 0 8px;
  color: var(--text);
  font:
    520 20px/1.25 'Aeonik',
    sans-serif;
  letter-spacing: -0.015em;
  text-wrap: balance;
}
.text-body {
  font-family: 'Inter', sans-serif;
  text-wrap: pretty;
}
.text-lede {
  max-width: 590px;
  margin: 0 0 38px;
  color: var(--text-soft);
  font-size: 20px;
  line-height: 1.58;
  text-wrap: pretty;
}
.text-card {
  font:
    400 16px/1.65 'Inter',
    sans-serif;
  text-wrap: pretty;
}
.text-label {
  color: var(--primary-light);
  font:
    500 11px/1.4 'Roboto Mono',
    monospace;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.text-meta {
  font-family: 'Roboto Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.hero-section {
  position: relative;
  padding-top: 88px;
  padding-bottom: 104px;
}
.hero-section::before {
  content: '';
  position: absolute;
  z-index: 0;
  width: min(920px, 78vw);
  height: 720px;
  right: -120px;
  top: -260px;
  background: radial-gradient(circle, rgba(24, 96, 255, 0.1), transparent 62%);
  pointer-events: none;
}
.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 560px);
  align-items: center;
  gap: clamp(24px, 3vw, 40px);
}
.hero-copy {
  --hero-reveal-start: 400ms;
  --hero-reveal-stagger: 125ms;
  --hero-reveal-duration: 1750ms;
  --hero-reveal-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --hero-actions-delay: 900ms;

  max-width: 660px;
  min-width: 0;
  container-type: inline-size;
}
.hero-reveal-mask {
  --hero-reveal-delay: var(--hero-reveal-start);
  --hero-reveal-gap: 28px;

  overflow: hidden;
  margin-bottom: var(--hero-reveal-gap);
}
.hero-reveal-mask[data-hero-reveal='lede'] {
  --hero-reveal-delay: calc(
    var(--hero-reveal-start) + var(--hero-reveal-stagger) +
      var(--hero-reveal-stagger)
  );
  --hero-reveal-gap: 38px;
}
.hero-reveal-mask[data-hero-reveal='actions'] {
  --hero-reveal-delay: var(--hero-actions-delay);
  --hero-reveal-gap: 24px;
}
.hero-reveal-mask > * {
  margin-bottom: 0;
  opacity: 0;
  transform: translateY(125%);
  animation: heroRevealUp var(--hero-reveal-duration) var(--hero-reveal-ease)
    var(--hero-reveal-delay) both;
  will-change: transform;
}
.hero-reveal-mask[data-hero-reveal='heading'] {
  overflow: visible;
}
.hero-reveal-mask[data-hero-reveal='heading'] > .heading-display {
  opacity: 1;
  transform: none;
  animation: none;
  will-change: auto;
}
.hero-heading-line-mask {
  display: block;
  overflow: hidden;
  padding-bottom: 0.16em;
  margin-bottom: -0.16em;
}
.hero-heading-line {
  display: block;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(calc(100% + 0.16em));
  animation: heroRevealUp var(--hero-reveal-duration) var(--hero-reveal-ease)
    var(--hero-reveal-start) both;
  will-change: transform;
}
.hero-heading-line-mask:nth-child(2) .hero-heading-line {
  animation-delay: calc(var(--hero-reveal-start) + var(--hero-reveal-stagger));
}
.text-lede.is-line-split {
  opacity: 1;
  transform: none;
  animation: none;
}
.text-lede.is-line-reveal-pending {
  opacity: 0;
  transform: none;
  animation: none;
}
.hero-reveal-lines,
.hero-reveal-line {
  display: block;
}
.hero-reveal-line {
  overflow: hidden;
}
.hero-reveal-line__content {
  display: block;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(115%);
  animation: heroRevealUp var(--hero-reveal-duration) var(--hero-reveal-ease)
    var(--hero-line-delay) both;
}
.text-lede.is-revealed .hero-reveal-line__content {
  opacity: 1;
  transform: none;
  animation: none;
}
@keyframes heroRevealUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-visual {
  min-width: 0;
}
.hero-visual img {
  display: block;
  height: auto;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-bottom: 24px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: max-content;
  padding: 12px 0 8px;
  color: var(--text-soft);
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition:
    color 180ms ease,
    border-color 180ms ease;
}
.text-link svg {
  width: 17px;
  height: 17px;
}
@media (hover: hover) {
  .text-link:hover {
    color: #fff;
    border-color: var(--primary);
  }
}
.content-section {
  position: relative;
  width: 100%;
  padding-top: 0;
  padding-bottom: 80px;
}
.content-section.content-section > * {
  width: min(calc(100% - 64px), var(--shell));
  max-width: var(--shell);
  margin-inline: auto;
}
#story {
  padding-block: 0;
  margin-top: -60px;
  margin-bottom: 20px;
}
.callout {
  margin-bottom: 80px;
  padding-block: clamp(64px, 7vw, 88px);
  background: var(--primary);
}
.callout .heading-section,
.callout .heading-card {
  color: #fff;
}
.callout .text-card {
  color: rgba(255, 255, 255, 0.78);
}
.callout .callout-card {
  background: rgba(8, 11, 17, 0.65);
  border-radius: var(--radius-card);
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.05);
  border: 0;
}
.callout .section-heading::before {
  background: rgba(255, 255, 255, 0.24);
}
.section-heading {
  position: relative;
  width: 100%;
  margin: 0 0 24px;
  padding-top: 0;
  border-top: 0;
}
.outcome-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.video-embed {
  width: min(70%, 784px);
  margin-inline: auto;
  overflow: hidden;
  background: var(--bg-raised);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  aspect-ratio: 16 / 9;
}
.video-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.workflow-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: clamp(28px, 4vw, 56px);
  margin-bottom: 26px;
}

.workflow-heading-row .section-heading {
  margin: 0;
}

.workflow-tabs {
  overflow: hidden;
  background: #102030;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-card);
}

.tab-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.workflow-tab {
  position: relative;
  min-width: 0;
  min-height: 42px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  appearance: none;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  color: var(--text-soft);
  font:
    500 14px/1 'Aeonik',
    sans-serif;
  letter-spacing: 0;
  white-space: nowrap;
  cursor: pointer;
  transition:
    color 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease;
}

.workflow-tab::after {
  content: none;
}

.tab-icon {
  width: 17px;
  height: 17px;
  stroke-width: 1.8;
}

.tab-name {
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (hover: hover) {
  .workflow-tab:hover {
    color: #fff;
    background: rgba(37, 143, 249, 0.08);
    border-color: rgba(37, 143, 249, 0.72);
  }
}

.workflow-tab:focus-visible {
  z-index: 1;
  outline: 2px solid var(--primary-light);
  outline-offset: -3px;
}

.workflow-tab.is-active {
  color: #fff;
  background: var(--primary);
  border-color: var(--primary);
}

.workflow-stage {
  width: 100%;
  margin: 0;
}

.workflow-panel {
  position: relative;
  width: 100%;
  min-height: 540px;
  margin-top: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.62fr) minmax(320px, 0.88fr);
  grid-template-rows: 1fr;
  align-items: stretch;
  background: #102030;
  border: 0;
  border-radius: 0;
  overflow: hidden;
}

.workflow-panel::before,
.workflow-panel::after {
  content: '';
  grid-row: 1;
  z-index: 0;
}

.workflow-panel::before {
  grid-column: 1;
  background: #102030;
}

.workflow-panel::after {
  grid-column: 2;
  background: var(--primary);
}

.workflow-panel.is-hidden {
  display: none;
}

.workflow-graphic {
  --workflow-graphic-padding: clamp(12px, 1.6vw, 20px);
  position: relative;
  grid-column: 1;
  grid-row: 1;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: var(--workflow-graphic-padding);
  aspect-ratio: auto;
  overflow: hidden;
  background: transparent;
  pointer-events: none;
}

.workflow-graphic img,
.workflow-animation {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: contain;
  object-position: center;
  filter: none;
}

.workflow-animation {
  position: absolute;
  inset: var(--workflow-graphic-padding);
  width: calc(100% - var(--workflow-graphic-padding) - var(--workflow-graphic-padding));
  height: calc(100% - var(--workflow-graphic-padding) - var(--workflow-graphic-padding));
}

.workflow-replay {
  position: absolute;
  z-index: 2;
  bottom: 12px;
  left: 12px;
  width: 34px;
  height: 34px;
  padding: 0;
  display: grid;
  place-items: center;
  pointer-events: auto;
  appearance: none;
  color: #fff;
  background: rgba(8, 11, 17, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  opacity: 0.5;
  cursor: pointer;
  transition:
    opacity 150ms ease,
    background-color 150ms ease,
    border-color 150ms ease;
}

@media (hover: hover) {
  .workflow-replay:hover {
    background: rgba(8, 11, 17, 0.94);
    border-color: rgba(255, 255, 255, 0.72);
    opacity: 1;
  }
}

.workflow-replay:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
  opacity: 1;
}

.workflow-replay:active {
  opacity: 1;
}

.workflow-replay-icon {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.workflow-panel .workflow-copy {
  grid-column: 2;
  grid-row: 1;
  z-index: 1;
  align-self: center;
  min-width: 0;
  max-height: 100%;
  padding: clamp(38px, 4vw, 58px) clamp(30px, 4vw, 52px);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  overflow-y: auto;
}

.workflow-copy {
  padding: 24px;
}

.workflow-copy > .heading-card {
  color: #fff;
  font-size: clamp(25px, 2.4vw, 32px);
  line-height: 1.15;
  margin-bottom: 28px;
}

.workflow-copy > .text-card {
  max-width: 50ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
}

.workflow-copy > .text-card + .text-card {
  margin-top: 0.85em;
}

/* Each selected panel reveals its heading first, followed by the body copy. */
.workflow-panel:not(.is-hidden) .workflow-copy > .heading-card,
.workflow-panel:not(.is-hidden) .workflow-copy > .text-card {
  animation: workflowCopyFade 300ms ease-in-out both;
}

.workflow-panel:not(.is-hidden) .workflow-copy > .text-card {
  animation-delay: 100ms;
}

@keyframes workflowCopyFade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.outcome-card {
  min-height: 150px;
  padding: 22px;
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  align-items: center;
  gap: 22px;
  background: transparent;
  border: 1px solid var(--line);
  border-width: 1px 0 0;
  border-radius: var(--radius-card);
}
.outcome-card:nth-child(even) {
  border-left: 1px solid var(--line);
}
.callout .outcome-card:nth-child(even) {
  border-left-color: rgba(255, 255, 255, 0.2);
}

.outcome-graphic {
  width: 88px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
}

.outcome-graphic .feather {
  width: 44px;
  height: 44px;
  stroke-width: 1.5;
}

.outcome-content > .text-card {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.outcome-content > .text-card + .text-card {
  margin-top: 0.85em;
}
.callout .outcome-content > .text-card {
  color: rgba(255, 255, 255, 0.78);
}

.origin-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 1fr);
  align-items: center;
  gap: clamp(48px, 7vw, 12px);
}
.origin-media {
  position: relative;
  border: 0;
  outline: 0;
}
.origin-media > .origin-illustration {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 4;
  margin-inline: auto;
  object-fit: contain;
  padding: 10px;
}
.origin-copy {
  max-width: 760px;
}
.origin-copy > .text-body {
  max-width: 520px;
  margin-top: 24px;
  margin-bottom: 27px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.68;
}

.about-page {
  min-height: 100vh;
}

.about-hero {
  padding-top: clamp(88px, 9vw, 40px);
  padding-bottom: clamp(64px, 7vw, 40px);
}

.about-hero-layout {
  display: grid;
  grid-template-areas:
    'heading media'
    'story media';
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
  align-items: start;
  column-gap: clamp(48px, 6vw, 88px);
  row-gap: 36px;
}

.about-hero-heading {
  grid-area: heading;
  min-width: 0;
}

.about-hero-media {
  grid-area: media;
  align-self: center;
  width: 100%;
}

.about-hero-layout > .about-story-copy {
  grid-area: story;
}

.about-eyebrow {
  margin-bottom: 26px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
}

.about-eyebrow > span {
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  background: var(--accent);
  border-radius: 50%;
}

.section-eyebrow {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
}

.section-eyebrow > span {
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  background: var(--accent);
  border-radius: 50%;
}

.callout .section-eyebrow,
.demo-section .section-eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.origin-copy > .section-eyebrow {
  margin-bottom: 16px;
}

.about-hero-heading > .heading-display {
  max-width: 820px;
}

.about-hero-heading > .text-lede {
  max-width: 620px;
  margin-bottom: 0;
}

.about-story {
  padding-bottom: clamp(88px, 10vw, 132px);
}

.about-story-copy {
  max-width: 680px;
  font-size: 17px;
  line-height: 1.75;
}

.about-story-copy p {
  margin: 0 0 20px;
  color: var(--muted);
}

.about-story-copy p:first-child {
  color: var(--text-soft);
}

.about-story-copy p:last-child {
  margin-bottom: 0;
}

.about-proof-grid {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.about-proof {
  min-width: 0;
  margin: 28px 28px 0 0;
  padding-right: 28px;
}

.about-proof:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.about-proof h3 {
  margin: 0 0 8px;
  color: var(--text);
  font:
    520 26px/1.2 'Aeonik',
    sans-serif;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

.about-proof p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.about-proof .button {
  min-height: 50px;
  padding-inline: 22px;
  display: flex;
  width: fit-content;
  margin-top: 20px;
}

.about-footer-inner {
  padding-top: 44px;
  padding-bottom: 44px;
}

.about-footer .site-footer {
  margin-top: 0;
}

.demo-section {
  position: relative;
  overflow: hidden;
  background: #0c43bd;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
}
.demo-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 72% 58% at 0% 0%,
    rgba(255, 255, 255, 0.28) 0%,
    rgba(255, 255, 255, 0.12) 26%,
    rgba(255, 255, 255, 0.045) 48%,
    transparent 72%
  );
  filter: blur(18px);
  transform: translate3d(-2%, -4%, 0);
  pointer-events: none;
}
.demo-section.dot-glow-upper-right::before {
  background: radial-gradient(
    ellipse 72% 58% at 100% 0%,
    rgba(255, 255, 255, 0.28) 0%,
    rgba(255, 255, 255, 0.12) 26%,
    rgba(255, 255, 255, 0.045) 48%,
    transparent 72%
  );
  transform: translate3d(2%, -4%, 0);
}
.demo-inner {
  position: relative;
  z-index: 1;
  padding-top: 40px;
  padding-bottom: 44px;
}
.demo-layout {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(0, 2fr);
  gap: clamp(36px, 5vw, 76px);
  align-items: start;
}
.demo-copy {
  max-width: 420px;
}
.demo-copy .text-body {
  max-width: 540px;
  margin: -10px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
}

.calendly-column {
  width: 100%;
  min-width: 0;
}
.calendly-margin-fix {
  position: relative;
  overflow: hidden;
  background: var(--bg-start);
  border-radius: var(--radius-card);
  box-shadow: 0 35px 70px rgba(0, 23, 84, 0.32);
}
.calendly-scroll-guard {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 18px;
  appearance: none;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.calendly-scroll-guard[hidden] {
  display: none;
}
.calendly-scroll-guard span {
  padding: 8px 12px;
  color: var(--text);
  background: rgba(8, 11, 17, 0.88);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 13px;
  line-height: 1;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}
.calendly-scroll-guard:hover span,
.calendly-scroll-guard:focus-visible span {
  border-color: var(--primary-light);
}

#calendly-embed {
  --calendly-scale: 0.88;
  --calendly-inverse-scale: 113.637%;

  width: 100%;
  height: 740px;
  overflow: hidden;
  background: var(--bg-start);
}
#calendly-embed iframe {
  display: block;
  width: var(--calendly-inverse-scale) !important;
  height: var(--calendly-inverse-scale) !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  border: 0;
  pointer-events: none;
  transform: scale(var(--calendly-scale));
  transform-origin: top left;
}
.calendly-margin-fix.is-interactive #calendly-embed iframe {
  pointer-events: auto;
}
@media (max-width: 900px) {
  #calendly-embed {
    --calendly-scale: 0.94;
    --calendly-inverse-scale: 106.383%;
    height: 780px;
  }
}
@media (max-width: 600px) {
  #calendly-embed {
    --calendly-scale: 1;
    --calendly-inverse-scale: 100%;
    height: 840px;
  }
}
.site-footer {
  margin-top: 112px;
  padding-top: 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.footer-main {
  display: flex;
  justify-content: space-between;
  /* Logo block, links and button all sit on one centre line. */
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 38px;
}
.footer-brand {
  position: relative;
}
.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 36px;
}
.footer-link {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--footer-link-size);
  line-height: 1.5;
  text-decoration: none;
}
@media (hover: hover) {
  .footer-link:hover {
    color: #fff;
  }
}
.footer-link:active {
  color: #fff;
}
.linkedin-link {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  border-radius: 50%;
  transition:
    color 160ms ease,
    background-color 160ms ease;
}
.linkedin-link svg {
  display: block;
  width: 21px;
  height: 21px;
  fill: currentColor;
}
@media (hover: hover) {
  .linkedin-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
  }
}
.linkedin-link:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  outline: 2px solid #fff;
  outline-offset: 2px;
}
.footer-link.is-active,
.footer-link[aria-current='page'] {
  color: #fff;
}
/* Stays outlined rather than primary: the footer sits on the blue demo
   section, where a primary fill would disappear. */
.footer-demo-cta {
  --cta-height: 40px;
  --cta-padding-inline: 18px;
  --cta-gap: 11px;
  --cta-font-size: var(--footer-link-size);
  --cta-icon-size: 17px;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.42);
}

.calculator-nav-demo {
  --cta-font-size: 14px;
  min-height: 0;
  padding: 11px 22px;
  color: #eef1f6;
  border-color: rgba(255, 255, 255, 0.4);
  border-radius: 2px;
}

.calculator-content-demo {
  flex-shrink: 0;
}
@media (hover: hover) {
  .footer-demo-cta:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #fff;
  }
}
.footer-demo-cta:focus-visible,
.footer-demo-cta:active {
  background: rgba(255, 255, 255, 0.08);
  border-color: #fff;
}
.footer-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  padding-top: 24px;
  color: rgba(255, 255, 255, 0.44);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
}
.footer-legal {
  display: flex;
  justify-self: end;
  gap: 24px;
}
.footer-bottom .footer-link {
  color: rgba(255, 255, 255, 0.44);
  font-family: 'Roboto Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

@media (max-width: 1080px) {
  .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
    gap: 28px;
  }
  .hero-copy {
    max-width: 760px;
  }
  .about-hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
    column-gap: 40px;
  }
}

@media (max-width: 900px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .demo-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .demo-copy {
    max-width: 620px;
  }
  .hero-visual img {
    width: 100%;
    margin-inline: auto;
  }
  .about-hero-layout {
    grid-template-areas:
      'heading'
      'media'
      'story';
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .about-hero-media {
    width: min(100%, 620px);
    justify-self: center;
  }
}

@media (max-width: 780px) {
  html {
    scroll-padding-top: 124px;
  }
  .page-shell {
    width: min(calc(100% - 36px), var(--shell));
  }
  .content-section.content-section > * {
    width: min(calc(100% - 36px), var(--shell));
  }
  /* Bar keeps only the mark and the menu control; everything else moves into the
     full-screen panel below. */
  .site-nav {
    min-height: 0;
    padding: 12px 20px;
    grid-template-columns: auto auto;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
  }
  .site-logo--nav-wordmark {
    display: none;
  }
  .site-logo--nav-brandmark {
    display: block;
    width: 34px;
    height: auto;
  }
  .site-logo--footer {
    width: 138px;
  }

  .nav-toggle {
    position: relative;
    /* Sits above the panel so it can close it again. */
    z-index: 1;
    width: 44px;
    height: 44px;
    margin-right: 0;
    padding: 0;
    display: grid;
    place-items: center;
    appearance: none;
    color: #fff;
    background: none;
    border: 0;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }
  .nav-toggle:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
    border-radius: 5px;
  }
  /* Separate glyphs dissolve between states without rotating or morphing. */
  .nav-toggle-icon {
    position: absolute;
    width: 26px;
    height: 26px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    opacity: 1;
    transition: opacity 150ms ease;
  }
  .nav-toggle-icon--close {
    opacity: 0;
  }
  :root.nav-open .nav-toggle-icon--menu {
    opacity: 0;
  }
  :root.nav-open .nav-toggle-icon--close {
    opacity: 1;
  }

  /* The translucent black surround fills the outer 10px; the blue window is inset inside
     it and keeps the requested 10px of internal breathing room. */
  .nav-menu {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: calc(var(--site-nav-height) + 10px) 20px
      calc(20px + env(safe-area-inset-bottom, 0px));
    background: rgba(0, 0, 0, 0.6);
    isolation: isolate;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition:
      opacity 200ms ease,
      transform 200ms ease,
      visibility 0s linear 200ms;
  }
  .nav-menu::before {
    content: '';
    position: absolute;
    inset: 10px;
    z-index: -1;
    background: var(--primary);
    border-radius: 5px;
  }
  :root.nav-open .nav-menu {
    opacity: 1;
    visibility: visible;
    transform: none;
    transition-delay: 0s, 0s, 0s;
  }
  /* The page behind must not scroll under the open panel.
     Lock <html> only: overflow on <html> passes to the viewport, but overflow
     on <body> turns body into its own scroll container, and the sticky nav then
     sticks to body's top instead of the screen, leaving the brand mark and
     close button off-screen whenever the page is scrolled. */
  :root.nav-open {
    overflow: hidden;
  }

  .nav-menu .nav-links {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 0;
    text-align: center;
  }
  .nav-menu .nav-link {
    padding: 13px 18px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 34px;
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.025em;
  }
  .nav-menu .nav-link.is-active,
  .nav-menu .nav-link[aria-current='location'] {
    color: #fff;
  }
  /* The wipe-in underline is a pointer affordance; in the panel the active
     link is marked by colour instead. */
  .nav-menu .nav-link::after {
    display: none;
  }

  .nav-menu-footer {
    display: block;
    margin-top: 20px;
  }
  .nav-menu .nav-demo-cta {
    --cta-height: 52px;
    --cta-font-size: 16px;
    --cta-icon-size: 18px;
    min-width: 194px;
    border-color: rgba(255, 255, 255, 0.72);
    color: #fff;
  }
  .nav-menu-social {
    display: flex;
    width: min(100%, 240px);
    justify-content: center;
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.24);
  }
  .nav-menu-social .linkedin-link {
    color: rgba(255, 255, 255, 0.8);
  }
  .hero-section {
    padding-top: 56px;
    padding-bottom: 72px;
  }
  .text-lede {
    font-size: 19px;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
  .content-section {
    padding-bottom: 64px;
  }
  .callout {
    margin-bottom: 64px;
    padding-block: 64px;
  }
  .video-embed {
    width: 100%;
  }
  .outcome-grid {
    grid-template-columns: 1fr;
  }
  .workflow-heading-row {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 20px;
    margin-bottom: 18px;
  }
  .tab-list {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .workflow-tab {
    width: 100%;
  }
  .workflow-panel {
    height: auto;
    max-height: none;
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }
  .workflow-panel::before {
    grid-row: 1;
    grid-column: 1;
  }
  .workflow-panel::after {
    grid-row: 2;
    grid-column: 1;
  }
  .workflow-graphic {
    --workflow-graphic-padding: clamp(10px, 3vw, 16px);
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    height: auto;
    padding: var(--workflow-graphic-padding);
    aspect-ratio: 1000 / 650;
  }
  .workflow-panel .workflow-copy {
    grid-column: 1;
    grid-row: 2;
    align-self: start;
    padding: 28px 24px 36px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 0;
  }
  .origin-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .about-proof-grid {
    grid-template-columns: 1fr;
  }
  .about-proof {
    margin-right: 0;
    padding: 28px 0;
  }
  .about-proof:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .footer-main {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-bottom {
    gap: 12px;
  }
}

@media (max-width: 520px) {
  .workflow-tabs {
    border-radius: var(--radius-card);
  }
  .workflow-tab {
    min-height: 44px;
    padding-inline: 7px;
    justify-content: center;
    gap: 6px;
    border-radius: 6px;
    font-size: 12px;
  }
  .tab-icon {
    width: 15px;
    height: 15px;
  }
  .workflow-panel .workflow-copy {
    padding: 28px 22px 34px;
  }
  .outcome-card {
    min-height: 138px;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 16px;
  }
  .outcome-graphic {
    width: 72px;
  }
  .outcome-graphic .feather {
    width: 36px;
    height: 36px;
  }
  .outcome-card:nth-child(even) {
    border-left: 0;
  }
  .demo-inner {
    padding-top: 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .workflow-replay {
    transition: none;
  }
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
    transition-duration: 0.01ms;
  }
  .hero-reveal-mask > *,
  .hero-heading-line,
  .hero-reveal-line__content {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
