:root {
  color-scheme: light;
  --paper: #fff8eb;
  --paper-2: #f1fbff;
  --paper-3: #f7fff3;
  --ink: #17212b;
  --muted: #546473;
  --line: #dbe7e6;
  --blue: #1684c7;
  --coral: #f28461;
  --green: #2d9b72;
  --gold: #d9a431;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(36, 47, 58, 0.14);
  --soft-shadow: 0 14px 36px rgba(36, 47, 58, 0.1);
  --radius: 8px;
  --page: min(1140px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: linear-gradient(
    180deg,
    var(--paper) 0%,
    #fffdf7 30%,
    var(--paper-2) 58%,
    var(--paper-3) 100%
  );
  color: var(--ink);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.6;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

.motion-zone {
  --zone-progress: 0;
}

.motion-layer {
  will-change: transform;
}

body::selection {
  background: rgba(242, 132, 97, 0.25);
}

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

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

.scroll-meter {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 4px;
  background: rgba(255, 255, 255, 0.45);
}

.scroll-meter span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--coral), var(--green));
  transform: scaleX(0);
  transform-origin: left;
}

.site-nav {
  position: fixed;
  top: 14px;
  left: 50%;
  z-index: 90;
  width: min(1080px, calc(100% - 24px));
  min-height: 58px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 18px;
  padding: 9px 10px 9px 16px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  background: rgba(255, 253, 247, 0.82);
  box-shadow: 0 12px 38px rgba(39, 52, 61, 0.12);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 800;
  font-size: 0.98rem;
}

.brand-mark {
  position: relative;
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--ink);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.18);
}

.brand-mark span,
.brand-mark::before,
.brand-mark::after {
  position: absolute;
  content: "";
  left: 8px;
  right: 8px;
  height: 3px;
  border-radius: 999px;
  background: #ffffff;
}

.brand-mark::before {
  top: 9px;
}

.brand-mark span {
  top: 15px;
  background: var(--coral);
}

.brand-mark::after {
  top: 21px;
  background: var(--green);
}

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

.site-nav nav a,
.nav-cta {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 14px;
  color: #273642;
  font-size: 0.9rem;
  font-weight: 700;
}

.site-nav nav a:hover,
.site-nav nav a.is-active {
  background: rgba(22, 132, 199, 0.1);
  color: #0d5d91;
}

.nav-cta {
  background: var(--ink);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(23, 33, 43, 0.18);
}

.hero {
  position: relative;
  min-height: 86svh;
  max-height: 860px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 7.5rem 0 5rem;
  isolation: isolate;
}

.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  position: fixed;
  inset: 0;
  z-index: 0;
  display: block;
  opacity: var(--hero-image-opacity, 1);
  transform: scale(1.025);
  transform-origin: center;
  transition: opacity 120ms linear;
  will-change: opacity;
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(255, 248, 235, 0.82) 0%,
      rgba(255, 248, 235, 0.7) 33%,
      rgba(255, 248, 235, 0.28) 58%,
      rgba(255, 248, 235, 0.08) 100%
    ),
    linear-gradient(
      180deg,
      rgba(255, 248, 235, 0.42) 0%,
      rgba(255, 248, 235, 0.08) 54%,
      rgba(255, 248, 235, 0.58) 100%
    );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: var(--page);
  margin: 0 auto;
  max-width: 680px;
}

.intent-packets {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.intent-packets span {
  position: absolute;
  width: 26px;
  height: 8px;
  border-radius: 999px;
  background: rgba(22, 132, 199, 0.42);
  box-shadow: 0 0 24px rgba(22, 132, 199, 0.18);
  opacity: 0;
  animation: packetDrift 7.2s ease-in-out infinite;
}

.intent-packets span:nth-child(1) {
  left: 8%;
  top: 38%;
}

.intent-packets span:nth-child(2) {
  left: 18%;
  top: 54%;
  background: rgba(242, 132, 97, 0.46);
  animation-delay: 1.1s;
}

.intent-packets span:nth-child(3) {
  left: 42%;
  top: 29%;
  background: rgba(45, 155, 114, 0.44);
  animation-delay: 2.4s;
}

.intent-packets span:nth-child(4) {
  left: 52%;
  top: 66%;
  background: rgba(217, 164, 49, 0.44);
  animation-delay: 3.6s;
}

.section-kicker {
  margin: 0 0 12px;
  color: #956833;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0;
}

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

h1,
h2,
h3 {
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 680px;
  margin-bottom: 18px;
  font-size: 3.75rem;
  font-weight: 900;
}

h2 {
  margin-bottom: 18px;
  font-size: 2.35rem;
  font-weight: 880;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.16rem;
  font-weight: 820;
}

.hero-lede {
  margin-bottom: 16px;
  color: #254256;
  font-size: 1.45rem;
  font-weight: 760;
  line-height: 1.25;
}

.hero-copy,
.section-copy p,
.section-heading p,
.roots-copy p,
.roots-after,
.center-note,
.closing-inner p {
  color: var(--muted);
  font-size: 1.04rem;
}

.hero-copy {
  max-width: 590px;
  margin-bottom: 28px;
  color: #415466;
  font-size: 1.12rem;
}

.hero-actions,
.closing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  position: relative;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 820;
  box-shadow: var(--soft-shadow);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    background-color 220ms ease;
}

.button::after {
  position: absolute;
  content: "";
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 0%,
    rgba(255, 255, 255, 0.38) 46%,
    transparent 74%
  );
  transform: translateX(-120%);
  transition: transform 500ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(36, 47, 58, 0.18);
}

.button:hover::after {
  transform: translateX(120%);
}

.button.primary {
  background: var(--ink);
  color: #ffffff;
}

.button.secondary {
  border: 1px solid rgba(23, 33, 43, 0.12);
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
}

.hero-command {
  width: min(100%, 580px);
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  overflow: hidden;
  border: 1px solid rgba(23, 33, 43, 0.12);
  border-radius: var(--radius);
  padding: 0 15px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 14px 38px rgba(23, 33, 43, 0.12);
  backdrop-filter: blur(14px);
}

.prompt-symbol {
  flex: 0 0 auto;
  color: var(--green);
  font-weight: 900;
}

.typed-text {
  min-width: 0;
  max-width: calc(100% - 42px);
  display: inline-block;
  overflow: hidden;
  color: #2c3c4a;
  font-family:
    "SFMono-Regular", Consolas, "Liberation Mono", Menlo, ui-monospace,
    monospace;
  font-size: 0.86rem;
  white-space: nowrap;
  animation: typeLine 7.4s steps(56, end) infinite;
}

.cursor-dot {
  flex: 0 0 auto;
  width: 9px;
  height: 18px;
  border-radius: 3px;
  background: var(--coral);
  animation: cursorBlink 900ms steps(2, end) infinite;
}

.voice-path {
  position: absolute;
  pointer-events: none;
}

.hero-path {
  left: 6%;
  bottom: 16%;
  z-index: 2;
  width: min(520px, 52vw);
  height: 120px;
  opacity: 0.42;
}

.voice-path span {
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(22, 132, 199, 0),
    rgba(22, 132, 199, 0.82),
    rgba(45, 155, 114, 0)
  );
  transform-origin: left;
  animation: voiceTravel 4.8s ease-in-out infinite;
}

.voice-path span:nth-child(1) {
  top: 36px;
}

.voice-path span:nth-child(2) {
  top: 58px;
  animation-delay: 420ms;
}

.voice-path span:nth-child(3) {
  top: 80px;
  animation-delay: 860ms;
}

.section {
  width: var(--page);
  margin: 0 auto;
  padding: 6.5rem 0;
}

.intro-section,
.mini-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 54px;
  align-items: center;
}

.section-copy {
  max-width: 560px;
}

.section-copy p:last-child,
.section-heading p:last-child,
.roots-copy p:last-child,
.closing-inner p:last-of-type {
  margin-bottom: 0;
}

.flow-stack {
  position: relative;
  display: grid;
  gap: 14px;
}

.flow-stack::before {
  position: absolute;
  content: "";
  top: 24px;
  bottom: 24px;
  left: 27px;
  width: 2px;
  background: linear-gradient(
    180deg,
    var(--blue),
    var(--coral),
    var(--green),
    var(--gold)
  );
  opacity: 0.42;
}

.flow-progress {
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 27px;
  z-index: 1;
  width: 2px;
  overflow: hidden;
  border-radius: 999px;
  pointer-events: none;
}

.flow-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    var(--blue),
    var(--coral),
    var(--green),
    var(--gold)
  );
  transform: scaleY(var(--zone-progress));
  transform-origin: top;
}

.flow-card {
  position: relative;
  min-height: 132px;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: start;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--soft-shadow);
}

.flow-card::after {
  position: absolute;
  content: "";
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    105deg,
    transparent,
    color-mix(in srgb, var(--accent), transparent 84%),
    transparent
  );
  opacity: 0;
  transform: translateX(-28%);
  transition:
    opacity 420ms ease,
    transform 580ms ease;
}

.flow-card.is-active {
  --motion-x: 10px;
  border-color: color-mix(in srgb, var(--accent), transparent 54%);
  box-shadow: 0 22px 54px color-mix(in srgb, var(--accent), transparent 78%);
}

.flow-card.is-active::after {
  opacity: 1;
  transform: translateX(0);
}

.flow-card.is-active .flow-number {
  animation: activeStep 1.8s ease-in-out infinite;
}

.flow-number {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent);
  color: #ffffff;
  font-weight: 860;
  box-shadow: 0 10px 28px color-mix(in srgb, var(--accent), transparent 62%);
}

.flow-card h3,
.flow-card p {
  grid-column: 2;
}

.flow-card p,
.task-card p,
.compare-panel p,
.roots-timeline p {
  margin-bottom: 0;
  color: var(--muted);
}

.computer-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: 100%;
  padding: 6.5rem max(20px, calc((100% - 1140px) / 2));
  background: #ffffff;
  border-top: 1px solid rgba(219, 231, 230, 0.86);
  border-bottom: 1px solid rgba(219, 231, 230, 0.86);
}

#computer-scene {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 700ms ease;
}

.computer-section.webgl-ready #computer-scene {
  opacity: 0.42;
}

.computer-section > :not(#computer-scene) {
  position: relative;
  z-index: 1;
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading.narrow {
  max-width: 720px;
}

.review-console {
  max-width: 920px;
  margin: 0 auto 28px;
  overflow: hidden;
  border: 1px solid rgba(23, 33, 43, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 253, 247, 0.92);
  box-shadow: var(--shadow);
}

.console-top {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(23, 33, 43, 0.08);
  background: rgba(255, 255, 255, 0.76);
}

.console-top span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--coral);
}

.console-top span:nth-child(2) {
  background: var(--gold);
}

.console-top span:nth-child(3) {
  background: var(--green);
}

.console-top strong {
  margin-left: 6px;
  color: #3a4956;
  font-size: 0.82rem;
  font-weight: 840;
}

.console-body {
  display: grid;
  gap: 8px;
  padding: 18px;
  background:
    linear-gradient(90deg, rgba(22, 132, 199, 0.08), transparent 38%), #17212b;
}

.console-line {
  min-height: 36px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.86);
  font-family:
    "SFMono-Regular", Consolas, "Liberation Mono", Menlo, ui-monospace,
    monospace;
  font-size: 0.82rem;
  white-space: nowrap;
  transform: translateX(-16px);
  opacity: 0.18;
  animation: consoleSweep 8.4s ease-in-out infinite;
}

.console-line span {
  flex: 0 0 auto;
  min-width: 86px;
  color: #7fd2ff;
  font-weight: 800;
}

.line-two {
  animation-delay: 850ms;
}

.line-three {
  animation-delay: 1.7s;
}

.approval-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(23, 33, 43, 0.1);
}

.approval-rail span {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.86);
  color: #50616d;
  font-size: 0.82rem;
  font-weight: 800;
  transition:
    background-color 260ms ease,
    color 260ms ease;
}

.approval-rail span.is-active {
  background: #17212b;
  color: #ffffff;
}

.task-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.task-card,
.compare-panel,
.roots-timeline li {
  border: 1px solid rgba(219, 231, 230, 0.92);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--soft-shadow);
}

.task-card {
  position: relative;
  min-height: 232px;
  overflow: hidden;
  padding: 24px;
  transform-style: preserve-3d;
}

.task-card::before {
  position: absolute;
  content: "";
  inset: -1px;
  border-radius: inherit;
  background: radial-gradient(
    circle at var(--pointer-x, 50%) var(--pointer-y, 50%),
    rgba(255, 255, 255, 0.74),
    transparent 30%
  );
  opacity: 0;
  transition: opacity 260ms ease;
  pointer-events: none;
}

.task-card:hover::before,
.task-card.is-active::before {
  opacity: 1;
}

.task-card.is-active {
  --card-y: -8px;
  box-shadow: 0 24px 54px rgba(36, 47, 58, 0.16);
}

.task-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 8px;
  background: #ebf7ff;
  color: #0e679d;
  font-size: 0.78rem;
  font-weight: 860;
}

.task-card:nth-child(2) .task-icon,
.task-card:nth-child(5) .task-icon {
  background: #fff1e9;
  color: #a44c32;
}

.task-card:nth-child(3) .task-icon,
.task-card:nth-child(6) .task-icon {
  background: #edfbf4;
  color: #1b6a50;
}

.still-linux {
  background: #17212b;
  color: #ffffff;
}

.still-linux::before {
  background: radial-gradient(
    circle at var(--pointer-x, 50%) var(--pointer-y, 50%),
    rgba(127, 210, 255, 0.22),
    transparent 34%
  );
}

.still-linux p {
  color: rgba(255, 255, 255, 0.76);
}

.mini-section {
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
}

.mini-use-section {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  align-items: center;
  gap: 0;
  background: #e8eee8;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.mini-use-image {
  min-height: 520px;
  overflow: hidden;
}

.mini-use-image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
}

.mini-use-copy {
  max-width: 520px;
  padding: 5rem max(28px, 7vw);
}

.mini-use-copy h2 {
  max-width: 460px;
}

.mini-use-copy p:last-child {
  max-width: 430px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.mini-visual {
  position: relative;
  min-height: 470px;
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.82),
      rgba(255, 246, 232, 0.72)
    ),
    repeating-linear-gradient(
      90deg,
      rgba(22, 132, 199, 0.07) 0 1px,
      transparent 1px 48px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(45, 155, 114, 0.06) 0 1px,
      transparent 1px 48px
    );
  box-shadow: var(--shadow);
  transform: translate3d(0, var(--parallax-y, 0px), 0);
}

.mini-visual::before {
  position: absolute;
  content: "";
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0.52) 45%,
    transparent 72%
  );
  opacity: 0.42;
  transform: translateX(var(--zone-sweep, -92%));
  pointer-events: none;
}

.mini-media {
  position: absolute;
  inset: 0;
}

.mini-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.mini-visual .bluetooth-line,
.mini-visual .signal-packets {
  z-index: 3;
}

.bluetooth-line {
  position: absolute;
  left: 42%;
  top: 39%;
  width: 34%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(22, 132, 199, 0),
    rgba(22, 132, 199, 0.76),
    rgba(45, 155, 114, 0)
  );
  animation: voiceTravel 4.2s ease-in-out infinite;
}

.signal-packets {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.signal-packets span {
  position: absolute;
  left: 42%;
  top: 39%;
  width: 18px;
  height: 7px;
  border-radius: 999px;
  background: var(--blue);
  box-shadow: 0 0 18px rgba(22, 132, 199, 0.26);
  opacity: 0;
  animation: signalPacket 3.6s ease-in-out infinite;
}

.signal-packets span:nth-child(2) {
  background: var(--coral);
  animation-delay: 760ms;
}

.signal-packets span:nth-child(3) {
  background: var(--green);
  animation-delay: 1.52s;
}

.together-section {
  padding-top: 4.5rem;
}

.compare-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.compare-beam {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  width: min(180px, 18%);
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(22, 132, 199, 0.16);
  transform: translate(-50%, -50%) scaleX(var(--zone-progress));
  transform-origin: center;
  pointer-events: none;
}

.compare-beam span {
  display: block;
  width: 44%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  animation: beamSweep 2.4s ease-in-out infinite;
}

.compare-panel {
  position: relative;
  min-height: 230px;
  padding: 28px;
  overflow: hidden;
}

.compare-panel.is-active {
  --card-y: -7px;
  box-shadow: var(--shadow);
}

.compare-panel::before {
  position: absolute;
  content: "";
  inset: 0 auto 0 0;
  width: 8px;
  background: var(--accent);
}

.panel-label {
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 0.92rem;
  font-weight: 840;
}

.center-note {
  max-width: 700px;
  margin: 28px auto 0;
  text-align: center;
}

.roots-section {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(360px, 1fr);
  gap: 52px;
  align-items: start;
}

.roots-copy {
  position: sticky;
  top: 120px;
}

.roots-timeline {
  position: relative;
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.roots-timeline::before {
  position: absolute;
  content: "";
  top: 12px;
  bottom: 12px;
  left: 18px;
  width: 2px;
  background: linear-gradient(
    180deg,
    var(--blue),
    var(--coral),
    var(--green),
    var(--gold)
  );
}

.roots-timeline::after {
  position: absolute;
  content: "";
  top: 12px;
  bottom: 12px;
  left: 18px;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    var(--blue),
    var(--coral),
    var(--green),
    var(--gold)
  );
  transform: scaleY(var(--zone-progress));
  transform-origin: top;
}

.roots-timeline li {
  position: relative;
  z-index: 1;
  padding: 22px 22px 22px 58px;
}

.roots-timeline li::before {
  position: absolute;
  content: "";
  z-index: 2;
  top: 25px;
  left: 8px;
  width: 22px;
  height: 22px;
  border: 5px solid #ffffff;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 1px rgba(22, 132, 199, 0.35);
}

.roots-timeline li.is-active {
  --motion-x: 9px;
  box-shadow: var(--shadow);
}

.roots-timeline li.is-active::before {
  animation: activeStep 1.8s ease-in-out infinite;
}

.roots-timeline li:nth-child(2)::before {
  background: var(--coral);
}

.roots-timeline li:nth-child(3)::before {
  background: var(--green);
}

.roots-timeline li:nth-child(4)::before {
  background: var(--gold);
}

.roots-timeline span {
  display: block;
  margin-bottom: 6px;
  font-weight: 840;
}

.roots-after {
  grid-column: 2;
  margin: -18px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
}

.closing-section {
  position: relative;
  overflow: hidden;
  padding: 6.5rem 20px;
  background:
    linear-gradient(
      120deg,
      rgba(22, 132, 199, 0.1),
      rgba(255, 255, 255, 0) 34%
    ),
    linear-gradient(
      260deg,
      rgba(45, 155, 114, 0.12),
      rgba(255, 255, 255, 0) 42%
    ),
    #fff8eb;
  border-top: 1px solid rgba(219, 231, 230, 0.86);
}

.closing-ribbons {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.closing-ribbons span {
  position: absolute;
  left: -12%;
  width: 124%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(22, 132, 199, 0.34),
    rgba(242, 132, 97, 0.28),
    transparent
  );
  transform: translateX(var(--ribbon-a, -4%)) rotate(-4deg);
}

.closing-ribbons span:nth-child(1) {
  top: 23%;
}

.closing-ribbons span:nth-child(2) {
  top: 52%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(45, 155, 114, 0.32),
    rgba(217, 164, 49, 0.28),
    transparent
  );
  transform: translateX(var(--ribbon-b, 8%)) rotate(4deg);
}

.closing-ribbons span:nth-child(3) {
  top: 75%;
}

.closing-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.closing-inner h2 {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.use-cases {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 28px 0;
}

.use-cases span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(23, 33, 43, 0.1);
  border-radius: 999px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.78);
  color: #435562;
  font-weight: 720;
  transition:
    transform 260ms ease,
    border-color 260ms ease,
    background-color 260ms ease;
}

.use-cases span.is-active {
  transform: translateY(-5px);
  border-color: rgba(22, 132, 199, 0.34);
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(36, 47, 58, 0.11);
}

.closing-actions {
  justify-content: center;
}

.site-footer {
  width: var(--page);
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 auto;
  color: #5f6e7a;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  font-weight: 780;
}

[data-reveal],
.flow-card,
.task-card,
.compare-panel,
.roots-timeline li {
  --reveal-y: 22px;
  --motion-x: 0px;
  --parallax-y: 0px;
  --card-y: 0px;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --motion-scale: 1;
  opacity: 0;
  transform: translate3d(
      var(--motion-x),
      calc(var(--reveal-y) + var(--parallax-y) + var(--card-y)),
      0
    )
    rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) scale(var(--motion-scale));
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--delay, 0ms);
}

[data-reveal="down"] {
  --reveal-y: -16px;
  transform: translate3d(-50%, var(--reveal-y), 0);
}

[data-reveal].is-visible,
.flow-card.is-visible,
.task-card.is-visible,
.compare-panel.is-visible,
.roots-timeline li.is-visible {
  --reveal-y: 0px;
  opacity: 1;
  transform: translate3d(
      var(--motion-x),
      calc(var(--reveal-y) + var(--parallax-y) + var(--card-y)),
      0
    )
    rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) scale(var(--motion-scale));
}

.site-nav.is-visible {
  --reveal-y: 0px;
  transform: translate3d(-50%, var(--reveal-y), 0);
}

@keyframes packetDrift {
  0% {
    opacity: 0;
    transform: translate3d(-18px, 18px, 0) scaleX(0.7);
  }
  22% {
    opacity: 0.68;
  }
  70% {
    opacity: 0.45;
    transform: translate3d(96px, -26px, 0) scaleX(1.25);
  }
  100% {
    opacity: 0;
    transform: translate3d(146px, -42px, 0) scaleX(0.74);
  }
}

@keyframes typeLine {
  0%,
  16% {
    width: 0;
  }
  58%,
  84% {
    width: 56ch;
  }
  100% {
    width: 0;
  }
}

@keyframes cursorBlink {
  0%,
  52% {
    opacity: 1;
  }
  53%,
  100% {
    opacity: 0;
  }
}

@keyframes activeStep {
  0%,
  100% {
    box-shadow: 0 10px 28px color-mix(in srgb, var(--accent), transparent 62%);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 16px 38px color-mix(in srgb, var(--accent), transparent 45%);
    transform: scale(1.05);
  }
}

@keyframes consoleSweep {
  0%,
  12% {
    opacity: 0.18;
    transform: translateX(-16px);
  }
  24%,
  68% {
    opacity: 1;
    transform: translateX(0);
  }
  86%,
  100% {
    opacity: 0.28;
    transform: translateX(12px);
  }
}

@keyframes signalPacket {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scaleX(0.8);
  }
  18% {
    opacity: 1;
  }
  78% {
    opacity: 0.9;
    transform: translate3d(190px, 42px, 0) scaleX(1.18);
  }
  100% {
    opacity: 0;
    transform: translate3d(225px, 52px, 0) scaleX(0.72);
  }
}

@keyframes beamSweep {
  from {
    transform: translateX(-110%);
  }
  to {
    transform: translateX(260%);
  }
}

@keyframes voiceTravel {
  0% {
    opacity: 0;
    transform: translateX(-12%) scaleX(0.36);
  }
  28% {
    opacity: 1;
  }
  70% {
    opacity: 0.7;
    transform: translateX(18%) scaleX(1);
  }
  100% {
    opacity: 0;
    transform: translateX(40%) scaleX(0.42);
  }
}

@media (min-width: 940px) {
  h1 {
    font-size: 5.4rem;
  }

  h2 {
    font-size: 3rem;
  }
}

@media (max-width: 860px) {
  :root {
    --page: min(100% - 28px, 680px);
  }

  .site-nav {
    grid-template-columns: 1fr auto;
    top: 10px;
    padding: 8px 9px 8px 12px;
    background: rgba(255, 253, 247, 0.74);
  }

  .site-nav nav {
    display: none;
  }

  .nav-cta {
    padding: 0 12px;
  }

  .hero {
    min-height: 88svh;
    padding: 6.75rem 0 4rem;
  }

  .hero-media img {
    object-position: 58% center;
  }

  .hero-shade {
    background:
      linear-gradient(
        180deg,
        rgba(255, 248, 235, 0.68) 0%,
        rgba(255, 248, 235, 0.46) 42%,
        rgba(255, 248, 235, 0.18) 100%
      ),
      linear-gradient(
        90deg,
        rgba(255, 248, 235, 0.58),
        rgba(255, 248, 235, 0.16)
      );
  }

  .hero-content {
    width: var(--page);
    max-width: none;
  }

  .hero-content h1,
  .hero-lede,
  .hero-copy {
    text-shadow: 0 1px 18px rgba(255, 253, 247, 0.86);
  }

  .hero .button.primary {
    background: rgba(23, 33, 43, 0.94);
  }

  .hero .button.secondary,
  .hero-command {
    background: rgba(255, 255, 255, 0.66);
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.05rem;
  }

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

  .intro-section,
  .mini-section,
  .roots-section {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .section,
  .computer-section,
  .closing-section {
    padding-top: 4.7rem;
    padding-bottom: 4.7rem;
  }

  .task-grid,
  .compare-grid {
    grid-template-columns: 1fr;
  }

  .mini-section .mini-visual {
    order: 2;
  }

  .mini-visual {
    min-height: 390px;
  }

  .mini-use-section {
    grid-template-columns: 1fr;
  }

  .mini-use-image,
  .mini-use-image img {
    min-height: 360px;
    height: 52vw;
  }

  .mini-use-copy {
    max-width: none;
    padding: 3.8rem var(--page) 4.6rem;
  }

  .roots-copy {
    position: static;
  }

  .roots-after {
    grid-column: auto;
    margin-top: 0;
  }
}

@media (max-width: 520px) {
  :root {
    --page: calc(100% - 24px);
  }

  .brand {
    font-size: 0.9rem;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
  }

  .nav-cta {
    min-height: 38px;
    font-size: 0.84rem;
  }

  .hero {
    min-height: 86svh;
  }

  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 1.82rem;
  }

  .hero-actions,
  .closing-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
    min-height: 50px;
    text-align: center;
  }

  .flow-card {
    grid-template-columns: 48px 1fr;
    padding: 18px;
  }

  .flow-number {
    width: 48px;
    height: 48px;
  }

  .task-card {
    min-height: auto;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
