:root {
  --bg: #0b1020;
  --bg-deep: #080c18;
  --panel: #12192b;
  --card: #151d31;
  --elevated: #1a2338;
  --border: #26314a;
  --border-soft: rgba(255, 255, 255, 0.075);
  --text: #f3f6ff;
  --text-secondary: #d1d5df;
  --text-tertiary: #a7b2c8;
  --text-muted: #7d89a3;
  --purple: #7c6cf2;
  --purple-hover: #8a7cfa;
  --purple-soft: rgba(124, 108, 242, 0.14);
  --cyan: #22d3ee;
  --cyan-soft: rgba(34, 211, 238, 0.12);
  --green: #31c48d;
  --green-soft: rgba(49, 196, 141, 0.12);
  --warning: #f59e0b;
  --max-width: 1200px;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
}

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

html {
  color-scheme: dark;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% -20%, rgba(124, 108, 242, 0.12), transparent 34rem),
    var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  color: inherit;
  font: inherit;
}

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

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

h1,
h2,
h3 {
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h1 {
  margin-bottom: 28px;
  font-size: clamp(3.6rem, 6.6vw, 6.6rem);
  font-weight: 650;
}

h1 span {
  background: linear-gradient(110deg, #ffffff 0%, #a8b9ff 45%, #a88cff 100%);
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.35rem, 4.5vw, 4.3rem);
  font-weight: 640;
}

h3 {
  margin-bottom: 14px;
  font-size: 1.45rem;
  font-weight: 620;
}

p {
  color: var(--text-tertiary);
}

.container {
  width: min(calc(100% - 48px), var(--max-width));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 126px 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 10px 14px;
  transform: translateY(-150%);
  border-radius: 8px;
  background: var(--text);
  color: var(--bg);
  font-weight: 700;
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  top: 16px;
  right: 0;
  left: 0;
  z-index: 100;
  padding-inline: 20px;
  transition: transform 250ms ease;
}

.nav-shell {
  display: flex;
  width: min(100%, 1240px);
  min-height: 66px;
  margin-inline: auto;
  padding: 9px 10px 9px 16px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(11, 16, 32, 0.76);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 1.04rem;
  font-weight: 680;
  letter-spacing: -0.025em;
}

.brand img {
  border-radius: 10px;
  box-shadow: 0 5px 18px rgba(34, 211, 238, 0.11);
}

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

.site-nav > a:not(.button) {
  color: var(--text-tertiary);
  font-size: 0.88rem;
  font-weight: 540;
  transition: color 180ms ease;
}

.site-nav > a:not(.button):hover,
.site-nav > a:not(.button):focus-visible {
  color: var(--text);
}

.button {
  display: inline-flex;
  min-height: 48px;
  padding: 0 20px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 650;
  line-height: 1;
  cursor: pointer;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.button-small {
  min-height: 46px;
  padding-inline: 18px;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.button-small:hover,
.button-small:focus-visible {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
}

.button-primary {
  min-height: 56px;
  padding-inline: 24px;
  background: var(--purple);
  box-shadow: 0 14px 36px rgba(124, 108, 242, 0.24);
  color: white;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--purple-hover);
  box-shadow: 0 18px 44px rgba(124, 108, 242, 0.33);
}

.button:focus-visible,
.text-link:focus-visible,
.site-nav a:focus-visible,
.brand:focus-visible,
.command button:focus-visible,
.menu-button:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
}

.button-arrow {
  font-family: var(--mono);
  font-size: 1rem;
}

.download-mark {
  position: relative;
  width: 14px;
  height: 16px;
  border-bottom: 1.5px solid currentColor;
}

.download-mark::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1.5px;
  height: 10px;
  background: currentColor;
  content: "";
  transform: translateX(-50%);
}

.download-mark::after {
  position: absolute;
  top: 6px;
  left: 50%;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  content: "";
  transform: translateX(-50%) rotate(45deg);
}

.menu-button {
  display: none;
}

.hero {
  min-height: 100vh;
  padding-top: 178px;
  padding-bottom: 100px;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 64px 64px;
  content: "";
  mask-image: linear-gradient(to bottom, black 0%, transparent 78%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 72px;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 3;
}

.eyebrow,
.section-kicker,
.feature-index,
.micro-label {
  font-family: var(--mono);
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 28px;
  padding: 8px 11px;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(34, 211, 238, 0.18);
  border-radius: 7px;
  background: rgba(34, 211, 238, 0.055);
  color: #b8edf5;
  font-size: 0.68rem;
}

.live-dot,
.runtime-pill span,
.run-label i,
.side-runtime i,
.step-meta i {
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px rgba(34, 211, 238, 0.7);
}

.hero-lede {
  max-width: 610px;
  margin-bottom: 36px;
  color: var(--text-secondary);
  font-size: 1.14rem;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  font-size: 0.94rem;
  font-weight: 620;
  transition: color 180ms ease;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover {
  color: var(--text);
}

.text-link:hover span {
  transform: translateX(4px);
}

.platform-note {
  display: flex;
  margin-top: 22px;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-family: var(--mono);
  font-size: 0.7rem;
}

.platform-icon {
  position: relative;
  width: 12px;
  height: 14px;
  border: 1px solid var(--text-muted);
  border-radius: 4px;
}

.platform-icon::after {
  position: absolute;
  bottom: -4px;
  left: 2px;
  width: 6px;
  height: 2px;
  border-bottom: 1px solid var(--text-muted);
  content: "";
}

.hero-glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.hero-glow-one {
  top: 180px;
  right: -80px;
  width: 560px;
  height: 420px;
  background: rgba(124, 108, 242, 0.15);
}

.hero-glow-two {
  top: 390px;
  right: 30%;
  width: 330px;
  height: 300px;
  background: rgba(34, 211, 238, 0.07);
}

.product-stage {
  position: relative;
  width: 760px;
  transform-origin: left center;
}

.app-window {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: #0b1020;
  box-shadow:
    0 70px 100px rgba(0, 0, 0, 0.48),
    0 0 0 1px rgba(124, 108, 242, 0.06),
    0 0 80px rgba(124, 108, 242, 0.12);
}

.window-bar {
  display: grid;
  height: 48px;
  padding: 0 15px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #0e1425;
}

.traffic-lights {
  display: flex;
  gap: 7px;
}

.traffic-lights span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #39435c;
}

.window-title {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--text-secondary);
  font-size: 0.72rem;
  font-weight: 620;
}

.window-title img {
  border-radius: 5px;
}

.runtime-pill {
  display: flex;
  justify-self: end;
  align-items: center;
  gap: 7px;
  color: var(--text-muted);
  font-family: var(--mono);
  font-size: 0.58rem;
}

.app-layout {
  display: grid;
  height: 480px;
  grid-template-columns: 138px 1fr;
}

.app-sidebar {
  padding: 19px 13px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  background: #0e1425;
}

.side-brand {
  display: grid;
  width: 31px;
  height: 31px;
  margin: 0 0 24px 5px;
  place-items: center;
  border-radius: 8px;
  background: var(--purple);
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 800;
}

.side-item {
  display: flex;
  height: 32px;
  padding: 0 9px;
  align-items: center;
  gap: 8px;
  border-radius: 6px;
  color: #8290ab;
  font-size: 0.62rem;
  font-weight: 550;
}

.side-item + .side-item {
  margin-top: 4px;
}

.side-item span {
  width: 10px;
  height: 10px;
  border: 1px solid #59657d;
  border-radius: 3px;
}

.side-item.active {
  background: rgba(124, 108, 242, 0.15);
  color: #e2defe;
}

.side-item.active span {
  border-color: var(--purple);
  background: var(--purple);
}

.side-rule {
  height: 1px;
  margin: 18px 8px;
  background: rgba(255, 255, 255, 0.07);
}

.side-label {
  margin: 0 8px 9px;
  color: #59657d;
  font-family: var(--mono);
  font-size: 0.48rem;
  letter-spacing: 0.12em;
}

.side-runtime {
  display: flex;
  padding: 0 8px;
  align-items: center;
  gap: 8px;
  color: #8290ab;
  font-size: 0.56rem;
}

.side-runtime i {
  width: 5px;
  height: 5px;
}

.app-content {
  padding: 22px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.012) 1px, transparent 1px),
    #0b1020;
  background-size: 100% 24px;
}

.content-head {
  display: flex;
  margin-bottom: 16px;
  align-items: center;
  justify-content: space-between;
}

.content-head > div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.micro-label {
  color: #69758f;
  font-size: 0.49rem;
}

.content-head strong {
  color: #eef2fc;
  font-size: 0.84rem;
}

.task-id {
  padding: 4px 7px;
  border: 1px solid #2b3650;
  border-radius: 5px;
  color: #8c99b2;
  font-family: var(--mono);
  font-size: 0.52rem;
}

.pipeline-card,
.agents-card,
.terminal-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: rgba(21, 29, 49, 0.9);
}

.pipeline-card {
  padding: 14px 15px 18px;
}

.pipeline-title,
.card-head,
.terminal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pipeline-title {
  margin-bottom: 18px;
  color: #aeb9cd;
  font-size: 0.6rem;
  font-weight: 660;
}

.run-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 0.5rem;
  text-transform: uppercase;
}

.run-label i {
  width: 5px;
  height: 5px;
}

.pipeline {
  display: flex;
  align-items: flex-start;
}

.node {
  position: relative;
  display: flex;
  width: 58px;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: center;
  color: #6e7b95;
}

.node-mark {
  display: grid;
  width: 21px;
  height: 21px;
  margin-bottom: 7px;
  place-items: center;
  border: 1px solid #39445c;
  border-radius: 50%;
  background: #151d31;
  color: #0b1020;
  font-size: 0.52rem;
}

.node b {
  color: #8490a8;
  font-size: 0.54rem;
  font-weight: 620;
}

.node small {
  margin-top: 2px;
  color: #536079;
  font-family: var(--mono);
  font-size: 0.39rem;
  white-space: nowrap;
}

.node.done .node-mark {
  border-color: var(--green);
  background: var(--green);
}

.node.done b {
  color: #b7c2d6;
}

.node.running .node-mark {
  border-color: var(--cyan);
  background: var(--cyan-soft);
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.06);
}

.node.running .node-mark::after {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 9px rgba(34, 211, 238, 0.9);
  content: "";
}

.node.running b {
  color: #b8edf5;
}

.node.running small {
  color: #6dcad7;
}

.connector {
  width: 32px;
  height: 1px;
  margin-top: 10px;
  flex: 1 1 auto;
  background: #303a52;
}

.connector.done {
  background: var(--green);
}

.connector.active {
  background: linear-gradient(90deg, var(--green), var(--cyan));
}

.console-grid {
  display: grid;
  margin-top: 13px;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 13px;
}

.agents-card,
.terminal-card {
  overflow: hidden;
}

.card-head,
.terminal-head {
  min-height: 38px;
  padding: 0 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  color: #8490a8;
  font-size: 0.54rem;
  font-weight: 620;
}

.card-head span:last-child {
  color: var(--green);
  font-family: var(--mono);
  font-size: 0.46rem;
}

.agent-row {
  display: flex;
  min-height: 58px;
  padding: 10px 11px;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
}

.agent-row:last-child {
  border-bottom: 0;
}

.agent-avatar {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 7px;
  background: rgba(124, 108, 242, 0.16);
  color: #b8afff;
  font-family: var(--mono);
  font-size: 0.48rem;
  font-weight: 700;
}

.agent-avatar.blue {
  background: rgba(56, 189, 248, 0.12);
  color: #7dd3fc;
}

.agent-avatar.green {
  background: rgba(49, 196, 141, 0.12);
  color: #6ee7b7;
}

.agent-copy {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
}

.agent-copy b {
  color: #cbd3e2;
  font-size: 0.54rem;
}

.agent-copy small {
  color: #63708b;
  font-size: 0.47rem;
}

.agent-state {
  padding: 3px 5px;
  border-radius: 4px;
  background: var(--green-soft);
  color: var(--green);
  font-family: var(--mono);
  font-size: 0.42rem;
}

.agent-state.running {
  background: var(--cyan-soft);
  color: var(--cyan);
}

.agent-state.waiting {
  background: rgba(125, 137, 163, 0.1);
  color: #7d89a3;
}

.terminal-card {
  background: #080c18;
}

.terminal-head {
  color: #69758f;
  font-family: var(--mono);
  font-size: 0.48rem;
}

.terminal-body {
  padding: 16px 14px;
}

.terminal-body p {
  margin: 0 0 11px;
  color: #8593ad;
  font-family: var(--mono);
  font-size: 0.48rem;
  white-space: nowrap;
}

.terminal-body p i {
  margin-right: 7px;
  color: #56637d;
  font-style: normal;
}

.terminal-body p:nth-child(3) {
  color: #80d4b5;
}

.terminal-body p:nth-child(3) i {
  color: var(--green);
}

.terminal-body .terminal-active {
  color: #a6dce5;
}

.terminal-body .terminal-active i {
  color: var(--cyan);
}

.terminal-active span {
  display: inline-block;
  width: 5px;
  height: 10px;
  margin-left: 5px;
  vertical-align: -2px;
  background: var(--cyan);
  animation: blink 1s steps(2, jump-none) infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

.stage-caption {
  display: flex;
  width: 500px;
  margin: 20px 0 0 auto;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  color: #72809a;
  font-family: var(--mono);
  font-size: 0.58rem;
}

.stage-caption span {
  color: var(--purple);
}

.trust-strip {
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  background: rgba(8, 12, 24, 0.52);
}

.trust-grid {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  color: var(--text-muted);
  font-family: var(--mono);
  font-size: 0.67rem;
  letter-spacing: 0.02em;
}

.trust-grid i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--border);
}

.cli-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 8%, rgba(34, 211, 238, 0.055), transparent 28rem),
    var(--bg);
}

.cli-heading {
  display: grid;
  margin-bottom: 50px;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  align-items: end;
}

.cli-heading h2 {
  margin-bottom: 0;
}

.cli-heading > p {
  max-width: 440px;
  margin-bottom: 7px;
  font-size: 1.02rem;
  line-height: 1.75;
}

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

.cli-card {
  min-height: 350px;
  padding: 28px;
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(21, 29, 49, 0.92), rgba(14, 20, 37, 0.92));
}

.cli-card-top {
  display: flex;
  margin-bottom: 50px;
  align-items: flex-start;
  justify-content: space-between;
}

.cli-monogram {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--text-secondary);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: -0.04em;
}

.codex-mark {
  border-color: rgba(124, 108, 242, 0.3);
  background: var(--purple-soft);
  color: #b7afff;
}

.claude-mark {
  border-color: rgba(245, 158, 11, 0.26);
  background: rgba(245, 158, 11, 0.09);
  color: #f5bd61;
}

.cursor-mark {
  border-color: rgba(34, 211, 238, 0.26);
  background: var(--cyan-soft);
  color: #83e6f2;
}

.support-badge {
  display: inline-flex;
  min-height: 24px;
  padding: 0 7px;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(49, 196, 141, 0.2);
  border-radius: 5px;
  background: var(--green-soft);
  color: var(--green);
  font-family: var(--mono);
  font-size: 0.46rem;
  letter-spacing: 0.06em;
}

.support-badge i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px rgba(49, 196, 141, 0.65);
}

.cli-card h3 {
  margin-bottom: 12px;
  font-size: 1.48rem;
}

.cli-card p {
  min-height: 92px;
  margin-bottom: 25px;
  font-size: 0.91rem;
  line-height: 1.68;
}

.cli-card > code,
.cli-command-list code {
  display: flex;
  min-height: 42px;
  padding: 0 12px;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 7px;
  background: #080c18;
  color: #b7c1d4;
  font-family: var(--mono);
  font-size: 0.7rem;
}

.cli-card > code span,
.cli-command-list code span {
  color: var(--cyan);
}

.cli-requirement {
  display: grid;
  min-height: 84px;
  margin-top: 16px;
  padding: 20px 24px;
  grid-template-columns: 140px 1fr;
  align-items: center;
  border: 1px solid rgba(124, 108, 242, 0.18);
  border-radius: 12px;
  background: rgba(124, 108, 242, 0.055);
}

.cli-requirement > span {
  color: #a39af8;
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
}

.cli-requirement p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.88rem;
}

.features-section {
  background:
    radial-gradient(circle at 15% 35%, rgba(124, 108, 242, 0.07), transparent 30rem),
    var(--bg-deep);
}

.section-heading {
  display: grid;
  margin-bottom: 58px;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  align-items: end;
}

.section-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.section-heading > p {
  max-width: 430px;
  margin-bottom: 7px;
  font-size: 1.02rem;
  line-height: 1.75;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 20px;
  color: #9589fc;
  font-size: 0.69rem;
}

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

.feature-card {
  min-height: 450px;
  padding: 32px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(21, 29, 49, 0.9), rgba(14, 20, 37, 0.9));
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.feature-card h3 {
  max-width: 480px;
  font-size: 1.7rem;
}

.feature-card > p,
.feature-copy p,
.control-card > div:first-child p {
  max-width: 530px;
  margin-bottom: 0;
  color: var(--text-tertiary);
  line-height: 1.72;
}

.feature-index {
  margin-bottom: 38px;
  color: var(--text-muted);
  font-size: 0.62rem;
}

.feature-wide {
  display: grid;
  min-height: 350px;
  grid-column: span 2;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 50px;
  align-items: center;
}

.feature-wide .feature-index {
  align-self: start;
}

.feature-wide .feature-copy {
  align-self: start;
}

.mini-pipeline {
  display: flex;
  height: 190px;
  padding: 0 26px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    rgba(8, 12, 24, 0.8);
  background-size: 100% 32px;
}

.mini-node {
  display: grid;
  width: 68px;
  height: 68px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid #303b55;
  border-radius: 12px;
  background: #12192b;
  color: #77839d;
  font-family: var(--mono);
  font-size: 0.56rem;
}

.mini-node.complete {
  border-color: rgba(49, 196, 141, 0.3);
  color: #8fddc0;
}

.mini-node.active {
  border-color: rgba(34, 211, 238, 0.5);
  box-shadow: 0 0 26px rgba(34, 211, 238, 0.09);
  color: var(--cyan);
}

.mini-pipeline > i {
  height: 1px;
  flex: 1;
  background: #303b55;
}

.mini-pipeline > i:first-of-type {
  background: rgba(49, 196, 141, 0.6);
}

.mini-pipeline > i.live {
  background: linear-gradient(90deg, rgba(49, 196, 141, 0.6), var(--cyan));
}

.feature-visual {
  height: 200px;
  margin: 0 0 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 12px;
  background: #0b1020;
}

.pane-tab {
  display: flex;
  height: 42px;
  padding: 0 14px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  color: #8794ae;
  font-family: var(--mono);
  font-size: 0.56rem;
}

.pane-tab > span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pane-tab i,
.pane-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px rgba(49, 196, 141, 0.65);
}

.pane-tab b {
  padding: 3px 6px;
  border-radius: 4px;
  background: var(--purple-soft);
  color: #a99fff;
  font-size: 0.5rem;
}

.pane-lines {
  display: flex;
  padding: 24px 18px 15px;
  flex-direction: column;
  gap: 12px;
}

.pane-lines span {
  height: 6px;
  border-radius: 2px;
  background: #263149;
}

.pane-lines .line-90 {
  width: 90%;
}

.pane-lines .line-72 {
  width: 72%;
}

.pane-lines .line-84 {
  width: 84%;
  background: #31405a;
}

.pane-lines .line-48 {
  width: 48%;
  background: linear-gradient(90deg, #286177, #23324e);
}

.pane-status {
  display: flex;
  padding: 0 18px;
  align-items: center;
  gap: 8px;
  color: #6acaa5;
  font-family: var(--mono);
  font-size: 0.52rem;
}

.pane-status i {
  width: 5px;
  height: 5px;
}

.route-visual {
  height: 200px;
  padding: 22px 20px;
}

.route-row {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 10px;
}

.route-row b {
  color: #b9c3d6;
  font-size: 0.68rem;
  font-weight: 550;
}

.route-row small {
  color: #64718c;
  font-family: var(--mono);
  font-size: 0.48rem;
}

.route-badge {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 7px;
  background: var(--green-soft);
  color: var(--green);
  font-family: var(--mono);
  font-size: 0.5rem;
  font-weight: 700;
}

.route-badge.cyan {
  background: var(--cyan-soft);
  color: var(--cyan);
}

.route-line {
  width: 1px;
  height: 20px;
  margin: 2px 0 2px 14px;
  background: linear-gradient(var(--green), var(--cyan));
}

.route-line.muted {
  background: #303b53;
}

.route-row-active {
  margin: 0 -8px;
  padding: 7px 8px;
  border: 1px solid rgba(34, 211, 238, 0.12);
  border-radius: 8px;
  background: rgba(34, 211, 238, 0.04);
}

.route-row.muted {
  opacity: 0.56;
}

.control-card {
  grid-template-columns: 0.9fr 1.1fr;
}

.control-card .feature-index {
  margin-bottom: 36px;
}

.control-visual {
  padding: 24px;
  border: 1px solid rgba(124, 108, 242, 0.22);
  border-radius: 12px;
  background:
    radial-gradient(circle at 90% 0%, rgba(124, 108, 242, 0.12), transparent 18rem),
    #0e1425;
}

.approval-copy {
  display: flex;
  min-height: 112px;
  flex-direction: column;
}

.approval-copy span {
  margin-bottom: 18px;
  color: #9c91fb;
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.08em;
}

.approval-copy b {
  margin-bottom: 6px;
  color: #dfe5f0;
  font-size: 0.9rem;
  font-weight: 610;
}

.approval-copy small {
  color: #77839d;
  font-size: 0.64rem;
}

.approval-actions {
  display: flex;
  padding-top: 18px;
  justify-content: flex-end;
  gap: 9px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.approval-actions span {
  display: grid;
  min-height: 34px;
  padding: 0 11px;
  place-items: center;
  border: 1px solid #303b53;
  border-radius: 7px;
  color: #8f9bb3;
  font-size: 0.58rem;
  font-weight: 650;
}

.approval-actions .approve {
  border-color: var(--purple);
  background: var(--purple);
  color: white;
}

.workflow-section {
  border-top: 1px solid var(--border-soft);
  background: var(--bg);
}

.workflow-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 100px;
}

.workflow-intro {
  position: sticky;
  top: 140px;
  height: max-content;
}

.workflow-intro h2 {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
}

.workflow-intro p {
  max-width: 430px;
  margin-bottom: 28px;
  font-size: 1.02rem;
  line-height: 1.75;
}

.workflow-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.workflow-step {
  display: grid;
  min-height: 200px;
  padding: 36px 0;
  grid-template-columns: 56px 1fr auto;
  gap: 24px;
  border-top: 1px solid var(--border);
}

.workflow-step:last-child {
  border-bottom: 1px solid var(--border);
}

.step-number {
  color: #6f7b95;
  font-family: var(--mono);
  font-size: 0.72rem;
}

.workflow-step h3 {
  margin-bottom: 12px;
  font-size: 1.55rem;
}

.workflow-step p {
  max-width: 500px;
  margin-bottom: 0;
  line-height: 1.72;
}

.step-meta {
  display: flex;
  min-width: 64px;
  height: 27px;
  padding: 0 8px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid #33405a;
  border-radius: 5px;
  color: #71809c;
  font-family: var(--mono);
  font-size: 0.5rem;
}

.step-meta.active {
  border-color: rgba(34, 211, 238, 0.24);
  background: var(--cyan-soft);
  color: var(--cyan);
}

.step-meta.success {
  border-color: rgba(49, 196, 141, 0.24);
  background: var(--green-soft);
  color: var(--green);
}

.install-section {
  padding-bottom: 70px;
  background:
    radial-gradient(circle at 10% 50%, rgba(34, 211, 238, 0.05), transparent 28rem),
    var(--bg-deep);
}

.install-shell {
  display: grid;
  overflow: hidden;
  grid-template-columns: 0.86fr 1.14fr;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(21, 29, 49, 0.98), rgba(12, 17, 31, 0.98));
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.23);
}

.install-copy {
  padding: 60px;
  border-right: 1px solid var(--border-soft);
  background:
    radial-gradient(circle at 0% 100%, rgba(124, 108, 242, 0.16), transparent 24rem);
}

.install-copy h2 {
  max-width: 480px;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
}

.install-copy p {
  max-width: 490px;
  margin-bottom: 32px;
  font-size: 1rem;
  line-height: 1.75;
}

.download-detail {
  display: block;
  margin-top: 14px;
  color: var(--text-muted);
  font-family: var(--mono);
  font-size: 0.6rem;
}

.install-steps {
  padding: 34px 48px;
}

.install-step {
  display: grid;
  min-height: 150px;
  padding: 26px 0;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  border-bottom: 1px solid var(--border-soft);
}

.install-step:last-child {
  border-bottom: 0;
}

.install-step > span {
  color: var(--purple);
  font-family: var(--mono);
  font-size: 0.68rem;
}

.install-step h3 {
  margin-bottom: 8px;
  font-size: 1.22rem;
}

.install-step p {
  margin-bottom: 14px;
  font-size: 0.9rem;
  line-height: 1.6;
}

.command {
  display: flex;
  min-height: 42px;
  padding: 0 6px 0 13px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 7px;
  background: #080c18;
}

.command code {
  color: #a7b4cc;
  font-family: var(--mono);
  font-size: 0.7rem;
}

.command button {
  min-height: 28px;
  padding: 0 9px;
  border: 1px solid #303b53;
  border-radius: 5px;
  background: #12192b;
  color: #8190aa;
  font-family: var(--mono);
  font-size: 0.49rem;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    color 180ms ease;
}

.command button:hover {
  border-color: #54617b;
  color: var(--text-secondary);
}

.cli-command-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.cli-command-list code {
  min-height: 36px;
  font-size: 0.61rem;
}

.final-cta {
  padding: 70px 0 130px;
  background: var(--bg-deep);
}

.final-cta-inner {
  display: grid;
  padding: 46px 52px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  border: 1px solid rgba(124, 108, 242, 0.18);
  border-radius: 18px;
  background:
    radial-gradient(circle at 88% 0%, rgba(124, 108, 242, 0.15), transparent 26rem),
    #12192b;
}

.final-cta-inner img {
  border-radius: 18px;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.3);
}

.final-cta-inner .section-kicker {
  margin-bottom: 10px;
}

.final-cta-inner h2 {
  margin-bottom: 0;
  font-size: clamp(1.9rem, 3.2vw, 3rem);
}

.site-footer {
  border-top: 1px solid var(--border-soft);
  background: #080c18;
}

.footer-inner {
  display: grid;
  min-height: 110px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: var(--text-muted);
  font-family: var(--mono);
  font-size: 0.6rem;
}

.footer-inner p {
  margin: 0;
  color: var(--text-muted);
}

.footer-inner > span {
  justify-self: end;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-delay {
  transition-delay: 120ms;
}

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

@media (max-width: 1180px) {
  .hero-grid {
    gap: 48px;
  }

  .product-stage {
    width: 760px;
    transform: scale(0.78);
  }

  .hero-grid {
    grid-template-columns: 0.95fr 1.05fr;
  }
}

@media (max-width: 960px) {
  .site-header {
    top: 10px;
    padding-inline: 12px;
  }

  .menu-button {
    display: flex;
    width: 44px;
    height: 44px;
    padding: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 0;
    border-radius: 9px;
    background: transparent;
    cursor: pointer;
  }

  .menu-button span {
    width: 19px;
    height: 1.5px;
    background: var(--text-secondary);
    transition: transform 180ms ease;
  }

  .menu-button[aria-expanded="true"] span:first-child {
    transform: translateY(3.75px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:last-child {
    transform: translateY(-3.75px) rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 12px;
    left: 12px;
    display: none;
    padding: 14px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    background: rgba(11, 16, 32, 0.97);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav > a:not(.button) {
    padding: 11px 12px;
    font-size: 0.95rem;
  }

  .site-nav .button {
    margin-top: 6px;
  }

  .hero {
    padding-top: 150px;
  }

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

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

  .product-stage {
    width: 760px;
    margin-top: -20px;
    transform: scale(0.9);
    transform-origin: left top;
  }

  .trust-grid {
    display: grid;
    padding: 26px 0;
    grid-template-columns: 1fr 1fr;
    gap: 15px 30px;
  }

  .trust-grid i {
    display: none;
  }

  .section-heading,
  .cli-heading,
  .workflow-layout {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .workflow-intro {
    position: static;
  }

  .feature-wide,
  .control-card {
    grid-template-columns: 1fr;
  }

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

  .cli-card {
    min-height: 0;
  }

  .cli-card p {
    min-height: 0;
  }

  .install-shell {
    grid-template-columns: 1fr;
  }

  .install-copy {
    border-right: 0;
    border-bottom: 1px solid var(--border-soft);
  }

  .final-cta-inner {
    grid-template-columns: auto 1fr;
  }

  .final-cta-inner .button {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 32px), var(--max-width));
  }

  .section {
    padding: 92px 0;
  }

  h1 {
    font-size: clamp(3.1rem, 15vw, 4.5rem);
  }

  h2 {
    font-size: 2.45rem;
  }

  .hero {
    min-height: auto;
    padding-top: 138px;
    padding-bottom: 54px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

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

  .hero-actions .text-link {
    justify-content: center;
  }

  .platform-note {
    justify-content: center;
  }

  .product-stage {
    width: 760px;
    margin-top: -70px;
    transform: scale(0.62);
    transform-origin: left top;
  }

  .hero-grid {
    overflow: hidden;
  }

  .product-stage {
    margin-bottom: -175px;
  }

  .stage-caption {
    display: none;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: center;
  }

  .section-heading {
    margin-bottom: 38px;
    gap: 26px;
  }

  .cli-heading {
    margin-bottom: 38px;
    gap: 26px;
  }

  .cli-requirement {
    grid-template-columns: 1fr;
    gap: 8px;
  }

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

  .feature-card,
  .feature-wide {
    min-height: 0;
    grid-column: auto;
  }

  .feature-wide {
    gap: 36px;
  }

  .mini-pipeline {
    height: auto;
    padding: 20px;
    flex-direction: column;
    gap: 0;
  }

  .mini-pipeline > i {
    width: 1px;
    min-height: 20px;
    flex: 0 0 20px;
  }

  .workflow-step {
    grid-template-columns: 40px 1fr;
  }

  .step-meta {
    display: none;
  }

  .install-copy,
  .install-steps {
    padding: 34px 26px;
  }

  .install-step {
    grid-template-columns: 34px 1fr;
  }

  .cli-command-list {
    grid-template-columns: 1fr;
  }

  .final-cta {
    padding-bottom: 90px;
  }

  .final-cta-inner {
    padding: 34px 26px;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .final-cta-inner img {
    width: 80px;
    margin-inline: auto;
  }

  .footer-inner {
    padding: 28px 0;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 10px;
    text-align: center;
  }

  .footer-inner > span {
    justify-self: center;
  }
}

@media (max-width: 480px) {
  .product-stage {
    transform: scale(0.49);
  }

  .product-stage {
    margin-bottom: -230px;
  }

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

  .feature-card h3 {
    font-size: 1.48rem;
  }

  .command {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    padding: 12px;
  }

  .command button {
    min-height: 34px;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
