:root {
  --ink: #191725;
  --ink-soft: #3d3848;
  --paper: #f6f1e7;
  --paper-raised: #fffdf8;
  --violet: #7056d9;
  --coral: #ff6f91;
  --mint: #79cdb7;
  --line: rgba(25, 23, 37, 0.14);
  --muted: #6c6673;
  --display: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  --brand: var(--display);
  --mono: var(--display);
  --content: min(1240px, calc(100vw - 48px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

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

::selection {
  color: #fff;
  background: var(--violet);
}

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

button {
  cursor: pointer;
}

a {
  text-decoration: none;
}

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

:focus-visible {
  outline: 3px solid #ff4f87;
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 11px 16px;
  border-radius: 999px;
  color: #fff;
  background: var(--ink);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: absolute;
  z-index: 20;
  inset: 0 0 auto;
  padding: 0 clamp(18px, 3.4vw, 54px);
}

.site-header.is-pinned {
  position: fixed;
  z-index: 80;
  animation: site-header-return 240ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes site-header-return {
  from { transform: translateY(-110%); }
  to { transform: translateY(0); }
}

.site-nav {
  width: min(100%, 1430px);
  min-height: 76px;
  margin: 0 auto;
  padding: 8px 34px 8px 26px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 0;
  border-radius: 0 0 40px 40px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(25, 23, 37, 0.05), 0 12px 32px rgba(25, 23, 37, 0.07);
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  border-radius: 14px;
}

.brand-mark {
  width: 66px;
  height: 38px;
  flex: 0 0 auto;
  object-fit: contain;
}

.wordmark {
  color: #211d31;
  font-family: var(--brand);
  font-size: 29px;
  font-weight: 760;
  letter-spacing: -0.075em;
  line-height: 1;
}

.nav-links {
  margin: 0;
  display: flex;
  align-items: center;
  justify-self: center;
  gap: 25px;
}

.nav-links a,
.site-footer nav a {
  position: relative;
  padding: 8px 0;
  color: #17151e;
  font-size: 15px;
  font-weight: 590;
}

.nav-roll {
  height: 1.2em;
  display: block;
  overflow: hidden;
  line-height: 1.2;
}

.nav-roll__track {
  display: grid;
  transform: translateY(0);
  transition: transform 440ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.nav-roll__track > span {
  display: block;
  line-height: 1.2;
}

.demo-control {
  position: relative;
  z-index: 2;
  display: inline-flex;
  flex: 0 0 auto;
}

.demo-button {
  position: relative;
  min-height: 52px;
  padding: 8px 0;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  overflow: visible;
  appearance: none;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  line-height: 1;
  transform: scale(1);
  transform-origin: center;
  transition: transform 360ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.demo-button__label {
  position: relative;
  isolation: isolate;
  display: block;
  color: #17151e;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.025em;
  white-space: nowrap;
  background-image: linear-gradient(100deg, #17151e 0%, #17151e 35%, #7056d9 44%, #ff6f91 49%, #fff 52%, #79cdb7 56%, #17151e 65%, #17151e 100%);
  background-position: 100% 50%;
  background-size: 260% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.demo-button::after {
  content: "↗";
  color: #17151e;
  font-size: 14px;
  font-weight: 650;
  line-height: 1;
}

.demo-button__label::before,
.demo-button__label::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  pointer-events: none;
  -webkit-text-fill-color: currentColor;
}

.demo-button__label::before {
  color: #7056d9;
  clip-path: inset(8% 0 57% 0);
}

.demo-button__label::after {
  color: #ff6f91;
  clip-path: inset(54% 0 7% 0);
}

.demo-control--nav .demo-button.is-auto-animating {
  transform: scale(1.32);
}

.demo-control--nav .demo-button.is-auto-animating .demo-button__label {
  animation: demo-liquid-shimmer 1100ms cubic-bezier(0.22, 1, 0.36, 1) 1 both;
}

.demo-control--nav .demo-button.is-auto-animating .demo-button__label::before {
  animation: demo-chroma-top 1100ms cubic-bezier(0.22, 1, 0.36, 1) 1 both;
}

.demo-control--nav .demo-button.is-auto-animating .demo-button__label::after {
  animation: demo-chroma-bottom 1100ms cubic-bezier(0.22, 1, 0.36, 1) 1 both;
}

.demo-control--nav {
  justify-self: end;
  margin: -10px 0;
  padding: 10px 0 10px 22px;
}

.demo-control--nav::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 24px;
  background: rgba(25, 23, 37, 0.16);
  transform: translateY(-50%);
}

@media (hover: hover) and (pointer: fine) {
  .demo-button:hover {
    transform: scale(1.32);
  }

  .demo-button:hover .demo-button__label {
    animation: demo-liquid-shimmer 1100ms cubic-bezier(0.22, 1, 0.36, 1) infinite;
  }

  .demo-button:hover .demo-button__label::before {
    animation: demo-chroma-top 1100ms cubic-bezier(0.22, 1, 0.36, 1) infinite;
  }

  .demo-button:hover .demo-button__label::after {
    animation: demo-chroma-bottom 1100ms cubic-bezier(0.22, 1, 0.36, 1) infinite;
  }

  .nav-links a:hover .nav-roll__track {
    transform: translateY(-50%);
  }
}

@keyframes demo-liquid-shimmer {
  0% { background-position: 100% 50%; transform: translate3d(0, 0, 0) skewX(0deg); }
  28% { transform: translate3d(-1px, -1px, 0) skewX(-2.4deg); }
  52% { transform: translate3d(1px, 1px, 0) skewX(1.8deg); }
  74% { transform: translate3d(-0.5px, 0, 0) skewX(-0.8deg); }
  100% { background-position: 0% 50%; transform: translate3d(0, 0, 0) skewX(0deg); }
}

@keyframes demo-chroma-top {
  0%, 100% { opacity: 0; transform: translate3d(0, 0, 0); }
  30% { opacity: 0.72; transform: translate3d(2px, -1px, 0); }
  58% { opacity: 0.38; transform: translate3d(-1px, 1px, 0); }
}

@keyframes demo-chroma-bottom {
  0%, 100% { opacity: 0; transform: translate3d(0, 0, 0); }
  36% { opacity: 0.68; transform: translate3d(-2px, 1px, 0); }
  64% { opacity: 0.32; transform: translate3d(1px, -1px, 0); }
}

@keyframes pricing-color-sweep {
  from { background-position: 100% 50%; }
  to { background-position: 0% 50%; }
}

.demo-control--pricing {
  transform-origin: left center;
}

.demo-control--pricing .demo-button {
  min-height: 68px;
  gap: 9px;
}

.demo-control--pricing .demo-button__label {
  font-size: 20px;
  animation: pricing-color-sweep 1400ms linear infinite;
  transform: none;
  will-change: background-position;
}

.demo-control--pricing .demo-button__label::before,
.demo-control--pricing .demo-button__label::after {
  display: none;
  animation: none;
}

.demo-control--pricing .demo-button::after {
  font-size: 18px;
}

@media (hover: hover) and (pointer: fine) {
  .demo-control--pricing .demo-button:hover {
    transform: scale(1.32);
  }

  .demo-control--pricing .demo-button:hover .demo-button__label {
    animation: pricing-color-sweep 1400ms linear infinite;
    transform: none;
  }
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 0;
  padding: clamp(112px, 12vh, 142px) 18px 14px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: clamp(6px, 0.5vw, 10px) solid #fff;
  border-radius: clamp(14px, 1.25vw, 22px);
  background: #fff;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.96);
  border-radius: clamp(9px, 0.9vw, 16px);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100%, 1560px);
  min-height: 0;
  display: grid;
  grid-template-rows: auto auto;
  justify-items: center;
  align-items: center;
  gap: clamp(4px, 1vh, 12px);
}

.hero-title {
  max-width: 1400px;
  margin: 0;
  color: #17151e;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(52px, 6.6vw, 112px);
  font-weight: 850;
  letter-spacing: -0.075em;
  line-height: 0.86;
  text-align: center;
  text-wrap: balance;
}

.hero-title span {
  color: #7056d9;
  font-family: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.065em;
}

.hero-horse-shell {
  position: relative;
  width: 100ch;
  height: 36em;
  align-self: start;
  margin-top: clamp(14px, 1.8vh, 24px);
  font-family: "SFMono-Regular", "Andale Mono", Consolas, monospace;
  font-size: clamp(3.8px, 1.08vw, 16px);
  transform: translateZ(0);
}

.hero-horse {
  position: absolute;
  inset: 0;
  margin: 0;
  user-select: none;
  font: inherit;
  font-variant-ligatures: none;
  font-weight: 750;
  letter-spacing: 0;
  line-height: 1;
  white-space: pre;
}

.hero-horse--main {
  z-index: 2;
  color: transparent;
  background-image: linear-gradient(100deg, #000 0%, #000 35%, #7056d9 43%, #9467e4 47%, #d865b0 50%, #9a6df2 53%, #7182d9 57%, #000 65%, #000 100%);
  background-position: 100% 50%;
  background-size: 260% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: horse-liquid-shimmer 2.6s linear infinite;
  will-change: background-position;
}

@keyframes horse-liquid-shimmer {
  0%, 12% { background-position: 100% 50%; }
  88%, 100% { background-position: 0% 50%; }
}

.hero-horse--glow {
  display: none;
}

.industries {
  position: relative;
  padding: 0;
  border-block: 1px solid var(--line);
  color: var(--ink);
  background: #fff;
}

.industries__inner {
  position: relative;
  width: var(--content);
  min-height: 72px;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: 40% 60%;
  align-items: center;
  gap: 0;
  background: #fff;
}

.industries__inner::after {
  content: "";
  position: absolute;
  top: -1px;
  bottom: -1px;
  left: 40%;
  width: 1px;
  background: var(--line);
  transform: translateX(-50%);
  pointer-events: none;
}

.industries__inner p {
  margin: 0;
  padding: 0 clamp(28px, 3.4vw, 46px);
  color: var(--ink);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 720;
  letter-spacing: -0.04em;
  line-height: 1;
}

.industries__inner ul {
  margin: 0;
  padding: 0 clamp(28px, 3.4vw, 46px);
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.4vw, 38px);
  list-style: none;
  font-size: clamp(15px, 1.35vw, 18px);
  font-weight: 650;
  letter-spacing: -0.015em;
}

.industries__inner li {
  position: relative;
}

.industries__inner li:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(clamp(20px, 2.4vw, 38px) / -2);
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #aaa4af;
  transform: translate(-50%, -50%);
}

.product-narrative {
  position: relative;
  padding-bottom: 0;
  background: #fff;
  scroll-margin-top: 92px;
}

.product-intro {
  position: relative;
  z-index: 1;
  width: var(--content);
  margin: 0 auto;
  min-height: clamp(154px, 14vw, 184px);
  padding: clamp(36px, 4vw, 48px) 0;
  display: grid;
  grid-template-columns: 40% 60%;
  align-items: center;
  gap: 0;
}

.product-intro::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 40%;
  width: 1px;
  background: var(--line);
  transform: translateX(-50%);
  pointer-events: none;
}

.product-intro h2 {
  margin: 0;
  padding: 0 clamp(28px, 3.4vw, 46px);
  font-size: clamp(50px, 5.4vw, 70px);
  font-weight: 680;
  letter-spacing: -0.052em;
  line-height: 1;
}

.product-intro__copy {
  max-width: 600px;
  margin: 0;
  padding: 0 clamp(28px, 3.4vw, 46px);
  justify-self: start;
  color: var(--ink);
  font-size: clamp(18px, 1.55vw, 21px);
  font-weight: 620;
  line-height: 1.42;
}

.feature-stack {
  position: relative;
  z-index: 2;
  width: var(--content);
  margin: 0 auto;
  display: grid;
}

.feature-card {
  position: sticky;
  top: 84px;
  min-height: 0;
  padding: clamp(44px, 4.8vw, 60px) 0;
  display: grid;
  grid-template-columns: minmax(280px, 40%) minmax(420px, 60%);
  align-items: center;
  isolation: isolate;
  border-top: 1px solid var(--line);
  background: #fff;
}

.feature-card::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: 40%;
  width: 1px;
  background: var(--line);
  transform: translateX(-50%);
  pointer-events: none;
}

.feature-card:nth-child(1) { z-index: 1; }
.feature-card:nth-child(2) { z-index: 2; }
.feature-card:nth-child(3) { z-index: 3; }
.feature-card:nth-child(4) { z-index: 4; }

.feature-copy {
  position: relative;
  z-index: 1;
  align-self: center;
  max-width: 500px;
  padding: 0 clamp(28px, 3.4vw, 46px);
}

.feature-kicker,
.section-label {
  margin: 0 0 24px;
  color: var(--muted);
  font-family: var(--display);
  font-size: 16px;
  font-weight: 650;
  letter-spacing: -0.01em;
}

.feature-kicker {
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 16px;
}

.feature-kicker span {
  color: var(--ink);
  font-size: 22px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.03em;
  line-height: 1;
}

.feature-kicker strong {
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.018em;
}

.feature-copy h3 {
  max-width: 480px;
  margin: 0;
  font-size: clamp(40px, 3.8vw, 54px);
  font-weight: 650;
  letter-spacing: -0.047em;
  line-height: 1.04;
}

.feature-copy ul {
  margin: 34px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
  list-style: none;
  color: var(--ink);
  font-size: clamp(16px, 1.35vw, 18px);
  font-weight: 570;
  line-height: 1.42;
}

.feature-copy li {
  position: relative;
  padding-left: 22px;
}

.feature-copy li::before {
  content: "•";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
}

.feature-preview {
  position: relative;
  z-index: 1;
  width: min(calc(100% - clamp(44px, 5.6vw, 76px)), 620px);
  margin: 0 auto;
  padding: clamp(8px, 0.8vw, 10px);
  justify-self: center;
  overflow: hidden;
  border: 0;
  border-radius: clamp(18px, 1.8vw, 24px);
  background: #fff;
  box-shadow: 0 18px 48px rgba(35, 30, 52, 0.1);
}

.feature-preview img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: clamp(10px, 1.2vw, 16px);
}

.cases-section {
  position: relative;
  padding: clamp(40px, 4vw, 56px) 24px clamp(34px, 4vw, 52px);
  color: var(--ink);
  background: #fff;
  scroll-margin-top: 92px;
}

.cases-heading {
  position: relative;
  z-index: 1;
  width: var(--content);
  margin: 0 auto clamp(20px, 2vw, 28px);
  padding: 0 clamp(28px, 4vw, 52px);
}

.cases-heading h2,
.pricing-section > .section-label + * h2,
.closing-cta h2 {
  margin: 0;
  font-size: clamp(52px, 6vw, 82px);
  font-weight: 600;
  letter-spacing: -0.052em;
  line-height: 1;
}

.case-carousel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1240px;
  height: 520px;
  margin: 0 auto;
  outline-offset: 6px;
}

.case-stage {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 56px 0 70px;
  display: grid;
  place-items: center;
}

.case-slide {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% - 96px);
  max-width: 1040px;
  min-height: 360px;
  margin: 0;
  padding: clamp(38px, 4.2vw, 54px);
  border: var(--case-border-width, 1px) solid rgba(25, 23, 37, 0.1);
  border-radius: clamp(22px, 2.4vw, 30px);
  background: #fff;
  box-shadow: 0 20px 52px rgba(25, 23, 37, 0.11);
  transform: translate(-50%, -50%) translateY(var(--case-y, 0px)) scale(var(--case-scale, 1));
  transform-origin: center;
  z-index: var(--case-z, 1);
  pointer-events: none;
  will-change: opacity, filter, transform;
  transition:
    transform 250ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 250ms cubic-bezier(0.4, 0, 0.2, 1),
    filter 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.case-slide.is-active {
  pointer-events: auto;
}

.case-slide blockquote {
  position: relative;
  margin: 0;
}

.case-slide blockquote p {
  position: relative;
  margin: 0;
  color: rgba(25, 23, 37, 0.8);
  font-size: clamp(21px, 2.15vw, 29px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.38;
}

.case-slide figcaption {
  margin-top: clamp(28px, 3.5vw, 44px);
  padding-top: clamp(22px, 2.5vw, 32px);
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: clamp(34px, 5vw, 72px);
  border-top: 1px solid rgba(25, 23, 37, 0.08);
}

.case-source {
  min-width: 100px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.case-source strong {
  color: var(--ink);
  font-size: 15px;
  font-weight: 650;
}

.case-source span {
  color: rgba(25, 23, 37, 0.5);
  font-size: 13px;
}

.case-numbers {
  width: min(100%, 650px);
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.case-numbers div {
  padding-left: clamp(18px, 2.5vw, 34px);
  border-left: 1px solid rgba(25, 23, 37, 0.1);
}

.case-numbers dd {
  margin: 0;
  color: var(--ink);
  font-size: clamp(32px, 3.6vw, 48px);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 1;
}

.case-numbers dt {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 540;
  line-height: 1.3;
}

.case-controls {
  position: absolute;
  z-index: 50;
  bottom: 18px;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transform: translateX(-50%);
}

.case-navigation,
.case-indicator {
  appearance: none;
  border: 0;
  background: transparent;
}

.case-navigation {
  position: relative;
  z-index: 0;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 0.5px solid rgba(25, 23, 37, 0.1);
  border-radius: 50%;
  background: rgba(255, 253, 249, 0.5);
  backdrop-filter: blur(4px);
  color: rgba(25, 23, 37, 0.6);
  font-size: 18px;
  line-height: 1;
  transition: border-color 200ms ease, background-color 200ms ease, box-shadow 200ms ease, opacity 200ms ease;
}

.case-navigation:hover {
  border-color: rgba(25, 23, 37, 0.2);
  background: rgba(255, 253, 249, 0.7);
  box-shadow: 0 8px 18px rgba(25, 23, 37, 0.08);
}

.case-indicators {
  display: flex;
  align-items: center;
  gap: 8px;
}

.case-indicator {
  width: 8px;
  height: 8px;
  padding: 0;
  border-radius: 999px;
  background: rgba(112, 86, 217, 0.3);
  transition: width 200ms ease, background-color 200ms ease;
}

.case-indicator.is-active {
  width: 32px;
  background: var(--violet);
}

.cases-section::before,
.cases-section::after,
.pricing-section::before,
.pricing-section::after,
.closing-section::before,
.closing-section::after,
.site-footer::before,
.site-footer::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(25, 23, 37, 0.12);
  pointer-events: none;
}

.cases-section::before,
.pricing-section::before,
.closing-section::before,
.site-footer::before { left: max(24px, calc((100vw - 1240px) / 2)); }

.cases-section::after,
.pricing-section::after,
.closing-section::after,
.site-footer::after { right: max(24px, calc((100vw - 1240px) / 2)); }

.pricing-section {
  position: relative;
  padding: clamp(64px, 7vw, 90px) max(24px, calc((100vw - 1240px) / 2));
  background: #fff;
  scroll-margin-top: 92px;
}

.pricing-block {
  position: relative;
  z-index: 1;
  padding: clamp(24px, 3vw, 40px) clamp(36px, 4.5vw, 58px);
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(360px, 1fr);
  gap: clamp(42px, 6vw, 84px);
  border-block: 1px solid var(--line);
  border-inline: 0;
  border-radius: 0;
}

.pricing-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(52px, 6vw, 80px);
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
}

.pricing-copy h2 span {
  display: block;
  margin-top: 8px;
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.pricing-copy p {
  max-width: 500px;
  margin: 22px 0 24px;
  color: var(--muted);
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.5;
}

.pricing-capabilities {
  margin: 0;
  padding: 0;
  display: grid;
  align-content: start;
  list-style: none;
}

.pricing-capabilities li {
  padding: 17px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  font-size: clamp(15px, 1.2vw, 17px);
  font-weight: 590;
}

.pricing-capabilities li::after {
  content: "✓";
  color: #31866e;
}

.pricing-capabilities .is-coming-soon {
  color: #9a949f;
}

.pricing-capabilities .is-coming-soon::after {
  content: none;
}

.is-coming-soon span {
  padding: 6px 10px;
  border-radius: 999px;
  color: #817b87;
  background: #f0edf1;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: -0.01em;
  text-transform: none;
}

.closing-section {
  position: relative;
  padding: clamp(36px, 4vw, 52px) 24px clamp(48px, 5vw, 64px);
  background: #fff;
}

.closing-cta {
  position: relative;
  z-index: 1;
  width: min(1080px, calc(100vw - 64px));
  min-height: clamp(290px, 24vw, 330px);
  margin: 0 auto;
  padding: clamp(48px, 5vw, 68px);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: clamp(44px, 6vw, 88px);
  overflow: hidden;
  border-radius: clamp(24px, 2.5vw, 32px);
  color: #fff;
  background-color: #090515;
  background-image:
    linear-gradient(to bottom, transparent 42%, rgba(9, 5, 21, 0.34) 68%, #090515 100%),
    radial-gradient(ellipse 68% 115% at 112% -10%, #07030f 0%, rgba(12, 5, 29, 0.94) 48%, transparent 82%),
    radial-gradient(ellipse 62% 110% at -8% -12%, rgba(228, 218, 255, 0.86) 0%, rgba(181, 143, 250, 0.64) 28%, rgba(91, 43, 181, 0.22) 58%, transparent 80%),
    linear-gradient(145deg, transparent 18%, rgba(101, 47, 255, 0.92) 39%, rgba(28, 76, 255, 0.82) 53%, rgba(63, 22, 143, 0.28) 69%, transparent 82%);
}

.closing-cta::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: -12%;
  pointer-events: none;
  opacity: 0.36;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='640' height='420' viewBox='0 0 640 420'%3E%3Cfilter id='cloud'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.01 .018' numOctaves='5' seed='19' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23cloud)' opacity='.56'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='96' height='96' viewBox='0 0 96 96'%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='4' seed='23' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23grain)' opacity='.76'/%3E%3C/svg%3E");
  background-size: 640px 420px, 96px 96px;
  background-blend-mode: soft-light, overlay;
  mix-blend-mode: soft-light;
  animation: closing-texture-drift 40s ease-in-out infinite;
}

@keyframes closing-texture-drift {
  0%, 100% { transform: translate3d(-0.75%, -0.5%, 0); }
  50% { transform: translate3d(0.75%, 0.5%, 0); }
}

@media (min-width: 992px) {
  .feature-card--accounts {
    position: relative;
    top: auto;
  }

  .feature-card--accounts .feature-preview {
    width: min(calc(100% - clamp(44px, 5.6vw, 76px)), 520px, 52svh);
  }
}

.closing-gradient-canvas {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
}

.closing-cta > :not(.closing-gradient-canvas) {
  position: relative;
  z-index: 1;
}

.closing-cta > div > p:last-child {
  color: rgba(255, 255, 255, 0.8);
}

.closing-cta h2 {
  font-size: clamp(40px, 4.5vw, 58px);
}

.closing-cta > div > p:last-child {
  max-width: 620px;
  margin: 18px 0 0;
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.5;
}

.closing-cta .demo-button {
  min-height: 56px;
  padding: 0 24px;
  gap: 12px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(45, 32, 92, 0.14);
}

.closing-cta .demo-button__label {
  color: var(--ink);
  font-size: 17px;
  background: none;
  -webkit-text-fill-color: currentColor;
}

.closing-cta .demo-button__label::before,
.closing-cta .demo-button__label::after {
  display: none;
}

.closing-cta .demo-button::after {
  content: "→";
  color: var(--ink);
  font-size: 20px;
}

@media (hover: hover) and (pointer: fine) {
  .closing-cta .demo-button:hover {
    transform: translateY(-2px) scale(1.02);
  }
}

.site-footer {
  position: relative;
  padding: 38px max(48px, calc((100vw - 1168px) / 2));
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto minmax(240px, 1fr);
  align-items: center;
  gap: 34px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.site-footer > * { position: relative; z-index: 1; }

.footer-identity p,
.footer-action p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.footer-brand .brand-mark {
  width: 50px;
  height: 29px;
}

.footer-brand .wordmark {
  font-size: 25px;
}

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

.footer-action {
  justify-self: end;
  text-align: right;
}

@media (max-width: 1120px) {
  .feature-card {
    min-height: 0;
  }

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

  .site-footer nav {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

@media (max-width: 991px) {
  .product-intro {
    padding: 40px 28px;
    grid-template-columns: 40% 60%;
    gap: 0;
  }

  .product-intro h2,
  .product-intro__copy {
    padding-inline: 0;
  }

  .product-intro__copy {
    grid-column: 2;
  }

  .feature-card {
    position: relative;
    top: auto;
    min-height: 0;
    padding: clamp(40px, 6vw, 58px) clamp(24px, 5vw, 44px);
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .feature-card::after {
    display: none;
  }

  .feature-copy {
    max-width: 620px;
    padding: 0;
  }

  .feature-preview {
    grid-row: 2;
    width: min(100%, 620px);
    margin: 0;
    justify-self: start;
  }

  .cases-heading {
    max-width: 520px;
  }

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

@media (max-width: 720px) {
  :root { --content: calc(100vw - 24px); }

  .site-header { padding: 10px; }

  .site-nav {
    min-height: 0;
    padding: 9px 10px 10px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px 12px;
    border-radius: 28px;
  }

  .brand { min-width: 0; overflow: hidden; }
  .brand-mark { width: 52px; height: 31px; }
  .wordmark { font-size: 24px; }

  .demo-control--nav { margin: 0; padding: 0; }
  .demo-control--nav::before { display: none; }
  .demo-control--nav .demo-button { min-height: 43px; padding: 6px 8px; }
  .demo-button__label { font-size: 14px; }

  .nav-links {
    order: 3;
    grid-column: 1 / -1;
    width: 100%;
    margin: 0;
    padding: 5px 5px 0;
    justify-content: space-between;
    justify-self: stretch;
    border-top: 1px solid rgba(25, 23, 37, 0.1);
  }

  .nav-links a { padding: 8px 3px 4px; font-size: 11px; }

  .hero {
    min-height: 0;
    padding: 140px 8px 18px;
    border-width: 6px;
    border-radius: 20px;
  }

  .hero-content {
    min-height: 0;
    align-content: center;
    gap: 22px;
  }

  .hero-title {
    font-size: clamp(44px, 13vw, 72px);
    line-height: 0.9;
  }

  .hero-horse-shell {
    margin-top: 10px;
    font-size: clamp(3.2px, 1.45vw, 5.6px);
  }
  .industries { padding: 18px 0; }
  .industries__inner {
    min-height: 0;
    grid-template-columns: 1fr;
    align-items: flex-start;
    gap: 14px;
  }
  .industries__inner::after { display: none; }
  .industries__inner p,
  .industries__inner ul { padding-inline: 0; }
  .industries__inner ul { flex-wrap: wrap; justify-content: flex-end; gap: 10px 20px; }
  .industries__inner li:not(:first-child)::before { left: -10px; }

  .product-intro {
    padding: 38px 24px;
    grid-template-columns: 1fr;
    text-align: left;
  }
  .product-intro::after { display: none; }
  .product-intro__copy { grid-column: 1; }
  .product-intro h2 { font-size: clamp(36px, 10vw, 46px); }

  .feature-card { padding: 38px 24px; }
  .feature-kicker { margin-bottom: 20px; }
  .feature-kicker strong { font-size: 17px; }
  .feature-copy h3 { font-size: clamp(34px, 9vw, 44px); }
  .feature-copy ul { font-size: 16px; }
  .feature-preview { width: min(100%, 520px); }

  .cases-section,
  .pricing-section { padding-inline: 16px; }

  .cases-heading { padding-inline: 8px; }
  .case-carousel { height: 620px; }
  .case-stage { padding-block: 58px 76px; }
  .case-slide {
    width: calc(100% - 16px);
    min-height: 460px;
    padding: 28px 24px;
    border-radius: 22px;
  }
  .case-slide blockquote p { font-size: 18px; }
  .case-slide figcaption { align-items: stretch; flex-direction: column; gap: 20px; }
  .case-source { flex-direction: row; align-items: center; justify-content: space-between; }
  .case-numbers { width: 100%; }
  .case-numbers div { padding-left: 12px; }
  .case-numbers dd { font-size: clamp(26px, 9vw, 34px); }
  .case-numbers dt { font-size: 10px; }

  .pricing-block { padding: 32px 24px; border-radius: 0; }
  .pricing-capabilities li { align-items: flex-start; }

  .product-narrative,
  .cases-section,
  .pricing-section { scroll-margin-top: 122px; }

  .closing-section { padding: 32px 16px 44px; }

  .closing-cta {
    width: 100%;
    min-height: 260px;
    padding: 34px 22px;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 28px;
    border-radius: 24px;
  }

  .closing-cta h2 { font-size: clamp(32px, 9vw, 42px); }
  .closing-cta .demo-button { min-height: 54px; padding-inline: 20px; }

  .site-footer {
    padding: 32px 20px;
    grid-template-columns: 1fr;
    align-items: start;
  }

  .site-footer nav { grid-column: auto; grid-row: auto; flex-wrap: wrap; }
  .footer-action { justify-self: start; text-align: left; }
}

@media (max-width: 390px) {
  .site-nav { gap: 8px; padding-inline: 8px; }
  .brand { gap: 8px; }
  .brand-mark { width: 43px; height: 27px; }
  .wordmark { font-size: 21px; }
  .demo-control--nav .demo-button { padding-inline: 6px; }
  .feature-card { padding-inline: 20px; }
}

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

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

  .feature-card { position: relative; top: auto; }
  .hero-horse--main {
    color: #000;
    background: none;
    -webkit-text-fill-color: currentColor;
  }
  .site-header.is-pinned { animation: none; }
  .case-slide { transition: none; }
  .demo-button:hover,
  .demo-button:active { transform: none; }
  .nav-links a:hover .nav-roll__track { transform: none; }
  .closing-cta { background-position: 50% 50%; }
}
