:root {
  --p: 0.5;
  --in: 1;
  --inC: 1;
  --out: 0;
  --outC: 0;
  --scroll-progress: 0.4;
  --accent: #72e7ff;
  --ease: cubic-bezier(0.16, 0.8, 0.24, 1);
  --dur-fast: 200ms;
  --dur-med: 420ms;
  --dur-slow: 700ms;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: radial-gradient(circle at 50% -10%, rgba(40, 140, 180, 0.11), transparent 38rem), #06080d;
  color: #f3f6fa;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

:focus-visible {
  outline: 2px solid #72e7ff;
  outline-offset: 3px;
  border-radius: 4px;
}

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

.ambient-bg {
  position: fixed;
  z-index: -1;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.ambient-svg {
  display: block;
  width: 100%;
  height: 100%;
  color: #72e7ff;
  fill: none;
  stroke: currentColor;
  stroke-width: 1;
}

.ambient-parallax--a {
  transform: translate3d(0, calc(var(--scroll-progress) * -60px), 0);
}

.ambient-parallax--b {
  transform: translate3d(0, calc(var(--scroll-progress) * 46px), 0);
}

.ambient-layer--a,
.ambient-layer--b {
  transform-box: fill-box;
  transform-origin: center;
  stroke-opacity: 0.1;
}

.ambient-layer--a {
  animation: amb-rotate-cw 420s linear infinite;
}

.ambient-layer--b {
  animation: amb-rotate-ccw 560s linear infinite;
  stroke-opacity: 0.08;
}

@keyframes amb-rotate-cw {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes amb-rotate-ccw {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}
.ambient-arc {
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-opacity: 0.14;
  opacity: 0;
  animation: amb-arc-fade 54s ease-in-out infinite;
}

.ambient-arc:nth-child(1) {
  animation-duration: 52s;
  animation-delay: -9s;
}

.ambient-arc:nth-child(2) {
  animation-duration: 58s;
  animation-delay: -18s;
}

.ambient-arc:nth-child(3) {
  animation-duration: 64s;
  animation-delay: -27s;
}

.ambient-arc:nth-child(4) {
  animation-duration: 70s;
  animation-delay: -36s;
}

@keyframes amb-arc-fade {
  0%, 100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
.scroll-progress {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: #72e7ff;
  pointer-events: none;
}

@supports (animation-timeline: scroll(root)) {
  .scroll-progress {
    animation: progress-grow linear both;
    animation-timeline: scroll(root);
    animation-range: 0% 100%;
  }
  @keyframes progress-grow {
    from {
      transform: scaleX(0);
    }
    to {
      transform: scaleX(1);
    }
  }
}
.container {
  width: min(100% - 48px, 1180px);
  margin-inline: auto;
}

.section {
  padding: 78px 0;
}

.section-tight {
  padding-top: 26px;
  padding-bottom: 60px;
}

.section-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0.008));
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

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

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: #72e7ff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 44px;
  opacity: calc(var(--in) * (1 - var(--out)));
  transform: translate3d(calc((1 - var(--in)) * 0px + var(--out) * 0px), calc((1 - var(--in)) * 46px + var(--out) * 0px), 0) scale(calc(1 - (1 - var(--in)) * 0.03 - var(--out) * 0));
}
.section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.03;
}

.section-heading-text {
  max-width: 620px;
  margin: 22px 0 0;
  color: #aab4c3;
  font-size: 1.02rem;
  line-height: 1.75;
}

.ghost-number {
  color: transparent;
  font-weight: 600;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
}

.nav-wrap {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #f3f6fa;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: opacity var(--dur-fast) var(--ease);
}
.brand:hover {
  opacity: 0.8;
}

.brand-mark {
  color: #72e7ff;
  font-size: 1rem;
  text-shadow: 0 0 12px rgba(114, 231, 255, 0.6);
}

.nav-cta {
  position: relative;
  padding-bottom: 2px;
  color: #aab4c3;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: color var(--dur-fast) var(--ease);
}
.nav-cta::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: auto;
  width: 0;
  height: 1px;
  background: #72e7ff;
  transition: width var(--dur-med) var(--ease);
}
.nav-cta:hover {
  color: #f3f6fa;
}
.nav-cta:hover::after {
  right: auto;
  left: 0;
  width: 100%;
}

.button {
  display: inline-flex;
  min-height: 48px;
  padding: 0 22px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(114, 231, 255, 0.35);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(114, 231, 255, 0.15), rgba(114, 231, 255, 0.06));
  color: #f3f6fa;
  font-size: 0.86rem;
  font-weight: 600;
  transition: transform var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}
.button:hover {
  transform: translateY(-2px);
  border-color: rgba(114, 231, 255, 0.65);
  background: linear-gradient(135deg, rgba(114, 231, 255, 0.22), rgba(114, 231, 255, 0.09));
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25), 0 0 25px rgba(114, 231, 255, 0.08);
}
.button:active {
  transform: translateY(0);
}

.button--primary {
  border-color: rgba(114, 231, 255, 0.65);
  background: linear-gradient(135deg, rgba(114, 231, 255, 0.24), rgba(114, 231, 255, 0.1));
  box-shadow: 0 0 28px rgba(114, 231, 255, 0.08);
}

.button--secondary {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.035);
}

.cta-link {
  position: relative;
  display: inline-flex;
  padding-bottom: 6px;
  align-items: center;
  gap: 10px;
  color: #f3f6fa;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: transform var(--dur-med) var(--ease);
}
.cta-link span {
  transition: transform var(--dur-med) var(--ease);
}
.cta-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  transform: scaleX(0.28);
  transform-origin: left;
  background: #72e7ff;
  transition: transform var(--dur-med) var(--ease);
}
.cta-link:hover {
  transform: translateX(6px);
}
.cta-link:hover span {
  transform: translateX(4px);
}
.cta-link:hover::after {
  transform: scaleX(1);
}

.hero {
  position: relative;
  display: flex;
  min-height: 720px;
  align-items: center;
  padding-top: 128px;
  padding-bottom: 90px;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -20%;
  left: 50%;
  width: 1100px;
  height: 780px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(114, 231, 255, 0.07), transparent 65%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  text-align: center;
}
.hero-content > * {
  animation: hero-in var(--dur-slow) var(--ease) both;
}
.hero-content > *:nth-child(1) {
  animation-delay: 90ms;
}
.hero-content > *:nth-child(2) {
  animation-delay: 180ms;
}
.hero-content > *:nth-child(3) {
  animation-delay: 270ms;
}
.hero-content > *:nth-child(4) {
  animation-delay: 360ms;
}
.hero-content > *:nth-child(5) {
  animation-delay: 450ms;
}
.hero-content > .eyebrow {
  opacity: calc(var(--in) * (1 - var(--out)));
  transform: translate3d(calc((1 - var(--in)) * 0px + var(--out) * 0px), calc((1 - var(--in)) * -60px + var(--out) * -60px), 0) scale(calc(1 - (1 - var(--in)) * 0 - var(--out) * 0));
}
.hero-content > h1 {
  opacity: calc(var(--in) * (1 - var(--out)));
  transform: translate3d(calc((1 - var(--in)) * 0px + var(--out) * 0px), calc((1 - var(--in)) * -42px + var(--out) * -42px), 0) scale(calc(1 - (1 - var(--in)) * 0 - var(--out) * 0));
}
.hero-content > .hero-text {
  opacity: calc(var(--in) * (1 - var(--out)));
  transform: translate3d(calc((1 - var(--in)) * 0px + var(--out) * 0px), calc((1 - var(--in)) * -110px + var(--out) * -110px), 0) scale(calc(1 - (1 - var(--in)) * 0.04 - var(--out) * 0.04));
}
.hero-content > .hero-actions {
  opacity: calc(var(--in) * (1 - var(--out)));
  transform: translate3d(calc((1 - var(--in)) * 0px + var(--out) * 0px), calc((1 - var(--in)) * -150px + var(--out) * -150px), 0) scale(calc(1 - (1 - var(--in)) * 0.06 - var(--out) * 0.06));
}
.hero-content > .hero-points {
  opacity: calc(var(--in) * (1 - var(--out)));
  transform: translate3d(calc((1 - var(--in)) * 0px + var(--out) * 0px), calc((1 - var(--in)) * -175px + var(--out) * -175px), 0) scale(calc(1 - (1 - var(--in)) * 0 - var(--out) * 0));
}

@keyframes hero-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-content h1 {
  max-width: 1050px;
  margin-bottom: 30px;
  font-size: clamp(3.5rem, 5vw, 5rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero-text {
  max-width: 640px;
  margin-bottom: 32px;
  color: #aab4c3;
  font-size: 1.05rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-bottom: 28px;
}

.hero-points {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.hero-points li {
  position: relative;
  padding-left: 16px;
  color: #6f7b8c;
  font-size: 0.82rem;
}
.hero-points li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 5px;
  height: 5px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: rgba(114, 231, 255, 0.55);
}

.cap-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.cap-row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(72px, 130px) minmax(220px, 360px) 1fr;
  align-items: baseline;
  gap: 10px 32px;
  padding-block: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}
.cap-row:nth-child(odd) {
  opacity: calc(var(--in) * (1 - var(--out)));
  transform: translate3d(calc((1 - var(--in)) * -84px + var(--out) * 0px), calc((1 - var(--in)) * 24px + var(--out) * -18px), 0) scale(calc(1 - (1 - var(--in)) * 0.02 - var(--out) * 0));
}
.cap-row:nth-child(even) {
  opacity: calc(var(--in) * (1 - var(--out)));
  transform: translate3d(calc((1 - var(--in)) * 84px + var(--out) * 0px), calc((1 - var(--in)) * 24px + var(--out) * -18px), 0) scale(calc(1 - (1 - var(--in)) * 0.02 - var(--out) * 0));
}

.cap-num {
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1;
  transform: translateY(calc((var(--p) - 0.5) * 70px));
}

.cap-title {
  margin: 0;
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.cap-row:nth-child(2n) .cap-title {
  margin-left: clamp(0px, 4vw, 34px);
}

.cap-text {
  max-width: 400px;
  margin: 0;
  color: #aab4c3;
  font-size: 0.94rem;
  line-height: 1.75;
}

.work-section {
  padding-top: 32px;
  padding-bottom: 40px;
}

.chapters {
  display: grid;
  gap: clamp(64px, 7vw, 104px);
}

.chapter {
  position: relative;
  height: auto;
}

.chapter + .chapter {
  margin-top: 0;
}

.chapter-stage {
  position: static;
  top: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: center;
  gap: clamp(28px, 5vw, 80px);
  height: auto;
  max-width: 1500px;
  margin-inline: auto;
  padding: 0 clamp(24px, 6vw, 100px);
}

.chapter:nth-child(odd) .chapter-demo {
  grid-column: 1;
  grid-row: 1;
}

.chapter:nth-child(odd) .chapter-copy {
  grid-column: 2;
  grid-row: 1;
}

.chapter:nth-child(even) .chapter-demo {
  grid-column: 2;
  grid-row: 1;
}

.chapter:nth-child(even) .chapter-copy {
  grid-column: 1;
  grid-row: 1;
}

.work-demo-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 22px;
  background: #0d121b;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}
.work-demo-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #0d121b;
}

.work-demo-frame--tall {
  aspect-ratio: 16/10;
}

.chapter-demo {
  position: relative;
  min-width: 0;
  max-width: none;
  opacity: 1;
  transform: none;
}
.chapter-demo .work-demo-frame {
  width: 100%;
  max-width: none;
  margin-inline: 0;
}

.work-demo-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 14px;
}
.work-demo-caption span {
  color: #6f7b8c;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.demo-open {
  position: relative;
  padding-bottom: 2px;
  color: #aab4c3;
  font-size: 0.78rem;
  font-weight: 600;
  transition: color var(--dur-fast) var(--ease);
}
.demo-open::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: #72e7ff;
  transition: width var(--dur-med) var(--ease);
}
.demo-open:hover {
  color: #f3f6fa;
}
.demo-open:hover::after {
  right: auto;
  left: 0;
  width: 100%;
}

.chapter-copy {
  position: relative;
  max-width: 460px;
  opacity: 1;
  transform: none;
}

.chapter-index-lg {
  position: absolute;
  z-index: -1;
  top: -0.42em;
  left: -0.03em;
  font-size: clamp(5rem, 10vw, 8.5rem);
  opacity: 1;
  transform: none;
}

.chapter-kicker {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.chapter-index {
  color: #6f7b8c;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  font-variant-numeric: tabular-nums;
}

.chapter-rule {
  flex: 1 1 auto;
  max-width: 56px;
  height: 1px;
  background: rgba(255, 255, 255, 0.09);
}

.chapter-category {
  margin: 0;
  color: #72e7ff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.chapter-copy h3 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.05;
}
.chapter-copy > p {
  margin-bottom: 0;
  color: #aab4c3;
  font-size: 0.96rem;
  line-height: 1.75;
}

.chapter--01 .chapter-demo,
.chapter--01 .chapter-copy,
.chapter--02 .chapter-demo,
.chapter--02 .chapter-copy,
.chapter--03 .chapter-demo,
.chapter--03 .chapter-copy,
.chapter--04 .chapter-demo,
.chapter--04 .chapter-copy,
.chapter--05 .chapter-demo,
.chapter--05 .chapter-copy,
.chapter--06 .chapter-demo,
.chapter--06 .chapter-copy {
  opacity: 1;
  transform: none;
}

.chapter--03.chapter,
.chapter--05.chapter,
.chapter--06.chapter {
  height: auto;
}

.tech-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}
.tech-list li {
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  color: #6f7b8c;
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}
.tech-list li:hover {
  color: #aab4c3;
  border-color: rgba(114, 231, 255, 0.3);
}

.statement {
  padding-block: 108px;
  text-align: center;
}

.statement-text {
  max-width: 920px;
  margin: 0 auto;
  font-size: clamp(1.9rem, 5vw, 3.6rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.2;
  clip-path: inset(0 0 calc((1 - var(--in)) * 100%) 0);
  opacity: calc(var(--in) * (1 - var(--out)));
  transform: translate3d(calc((1 - var(--in)) * 0px + var(--out) * 0px), calc((1 - var(--in)) * 60px + var(--out) * 0px), 0) scale(calc(1 - (1 - var(--in)) * -0.3 - var(--out) * 0));
}

.collab-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}

.collab-sticky {
  position: sticky;
  top: 130px;
}

.collab-track {
  display: flex;
  flex-direction: column;
  gap: 10vh;
  padding-block: 3vh;
}

.collab-row {
  position: relative;
  max-width: 520px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  opacity: calc(var(--in) * (1 - var(--out)));
  transform: translate3d(calc((1 - var(--in)) * 0px + var(--out) * 0px), calc((1 - var(--in)) * 90px + var(--out) * -90px), 0) scale(calc(1 - (1 - var(--in)) * 0.1 - var(--out) * 0.1));
}
.collab-row h3 {
  margin-bottom: 12px;
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  font-weight: 500;
  letter-spacing: -0.025em;
}
.collab-row p {
  margin-bottom: 0;
  color: #aab4c3;
  font-size: 0.94rem;
  line-height: 1.75;
}
.collab-row::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  transform: scaleX(calc(var(--in) * (1 - var(--out))));
  transform-origin: left;
  background: #72e7ff;
}

.collab-num {
  display: block;
  margin-bottom: 14px;
  color: #6f7b8c;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  font-variant-numeric: tabular-nums;
  transform: translateY(calc((var(--p) - 0.5) * 46px));
}

.workflow-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}

.workflow-intro h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.workflow-detail {
  display: flex;
  flex-direction: column;
  gap: 40px;
  opacity: calc(var(--in) * (1 - var(--out)));
  transform: translate3d(calc((1 - var(--in)) * 60px + var(--out) * 0px), calc((1 - var(--in)) * 0px + var(--out) * 0px), 0) scale(calc(1 - (1 - var(--in)) * 0 - var(--out) * 0));
}

.workflow-progress {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.workflow-stage {
  flex: none;
  color: #aab4c3;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.workflow-track {
  position: relative;
  flex: 1 1 auto;
  height: 1px;
  margin: 0 14px;
  background: rgba(255, 255, 255, 0.09);
}

.workflow-track-fill {
  position: absolute;
  inset: 0;
  transform-origin: left;
  transform: scaleX(var(--in));
  background: #72e7ff;
}

.workflow-copy {
  max-width: 520px;
  margin: 0;
  color: #aab4c3;
  line-height: 1.8;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding-block: 120px;
  text-align: center;
}
.final-cta::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 700px;
  height: 400px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(114, 231, 255, 0.085), transparent 68%);
  filter: blur(20px);
  pointer-events: none;
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.final-cta-inner h2 {
  max-width: 900px;
  margin-bottom: 24px;
  font-size: clamp(2.6rem, 5.5vw, 5rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1;
  clip-path: inset(0 0 calc((1 - var(--in)) * 100%) 0);
  opacity: calc(var(--in) * (1 - var(--out)));
  transform: translate3d(calc((1 - var(--in)) * 0px + var(--out) * 0px), calc((1 - var(--in)) * 80px + var(--out) * 0px), 0) scale(calc(1 - (1 - var(--in)) * 0 - var(--out) * 0));
}
.final-cta-inner > p:not(.eyebrow) {
  max-width: 600px;
  margin-bottom: 30px;
  color: #aab4c3;
  line-height: 1.75;
  opacity: calc(var(--inC) * (1 - var(--outC)));
  transform: translate3d(calc((1 - var(--inC)) * 0px + var(--outC) * 0px), calc((1 - var(--inC)) * 40px + var(--outC) * 0px), 0) scale(calc(1 - (1 - var(--inC)) * 0 - var(--outC) * 0));
}
.final-cta-inner .cta-link {
  opacity: calc(var(--inC) * (1 - var(--outC)));
  transform: translate3d(calc((1 - var(--inC)) * 0px + var(--outC) * 0px), calc((1 - var(--inC)) * 30px + var(--outC) * 0px), 0) scale(calc(1 - (1 - var(--inC)) * 0 - var(--outC) * 0));
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(0, 0, 0, 0.12);
}

.footer-wrap {
  display: flex;
  min-height: 90px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: #6f7b8c;
  font-size: 0.76rem;
}
.footer-wrap p {
  margin: 0;
}
.footer-wrap a {
  transition: color var(--dur-fast) var(--ease);
}
.footer-wrap a:hover {
  color: #72e7ff;
}

@media (min-width: 901px) {
  .chapter-stage {
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  }
}
@media (min-width: 1400px) {
  .chapter-stage {
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  }
}
@media (max-width: 900px) {
  .section {
    padding: 60px 0;
  }
  .section-tight {
    padding-top: 20px;
  }
  .cap-row {
    grid-template-columns: minmax(56px, 90px) 1fr;
  }
  .cap-text {
    grid-column: 2;
    max-width: 480px;
  }
  .cap-row:nth-child(2n) .cap-title {
    margin-left: 0;
  }
  .work-section {
    padding-top: 40px;
  }
  .chapters {
    gap: 56px;
  }
  .chapter-stage {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-inline: 24px;
  }
  .chapter:nth-child(odd) .chapter-demo,
  .chapter:nth-child(even) .chapter-demo {
    grid-column: 1;
    grid-row: 1;
  }
  .chapter:nth-child(odd) .chapter-copy,
  .chapter:nth-child(even) .chapter-copy {
    grid-column: 1;
    grid-row: 2;
  }
  .chapter + .chapter {
    padding-top: 56px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
  }
  .chapter-demo,
  .chapter-copy {
    max-width: 100%;
  }
  .work-demo-frame--tall {
    aspect-ratio: 16/10;
  }
  .chapter-index-lg {
    display: none;
  }
  .collab-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .collab-sticky {
    position: static;
  }
  .collab-track {
    gap: 44px;
    padding-block: 0;
  }
  .workflow-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .statement {
    padding-block: 80px;
  }
}
@media (max-width: 900px), (prefers-reduced-motion: reduce) {
  [data-track],
  [data-track] * {
    animation: none !important;
    transition: none !important;
    clip-path: none !important;
  }
  .hero-content > *,
  .section-heading,
  .cap-row,
  .cap-num,
  .chapter-demo,
  .chapter-copy,
  .chapter-index-lg,
  .statement-text,
  .collab-row,
  .collab-row::after,
  .collab-num,
  .workflow-detail,
  .workflow-track-fill,
  .final-cta-inner h2,
  .final-cta-inner p,
  .final-cta-inner .cta-link {
    opacity: 1 !important;
    transform: none !important;
  }
  .workflow-track-fill {
    transform: scaleX(1) !important;
  }
}
@media (max-width: 640px) {
  .container {
    width: min(100% - 32px, 1180px);
  }
  .ambient-field {
    width: 1000px;
  }
  .ambient-field--b {
    width: 1150px;
  }
  .ambient-field--c {
    width: 950px;
  }
  .section {
    padding: 48px 0;
  }
  .section-tight {
    padding-top: 8px;
    padding-bottom: 44px;
  }
  .nav-wrap {
    min-height: 70px;
  }
  .nav-cta {
    font-size: 0.76rem;
  }
  .hero {
    min-height: 620px;
    padding-top: 120px;
    padding-bottom: 75px;
  }
  .hero-content h1 {
    max-width: 100%;
    font-size: clamp(3rem, 14vw, 4.5rem);
  }
  .hero-text {
    font-size: 0.96rem;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-points {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .section-heading {
    margin-bottom: 30px;
  }
  .cap-row {
    padding-block: 22px;
  }
  .cap-num {
    font-size: 2.2rem;
  }
  .chapter-stage {
    padding-block: 32px;
  }
  .work-demo-frame {
    aspect-ratio: 4/3;
    border-radius: 16px;
  }
  .chapter-copy h3 {
    font-size: 2rem;
  }
  .statement {
    padding-block: 60px;
  }
  .statement-text {
    font-size: clamp(1.6rem, 8vw, 2.2rem);
  }
  .collab-row {
    max-width: 100%;
  }
  .workflow-progress {
    flex-wrap: wrap;
    gap: 10px 0;
  }
  .workflow-track {
    min-width: 40px;
  }
  .final-cta {
    padding-block: 76px;
  }
  .final-cta-inner h2 {
    font-size: clamp(2.4rem, 12vw, 3.8rem);
  }
  .footer-wrap {
    min-height: 110px;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .scroll-progress {
    display: none;
  }
}
