:root {
  color-scheme: dark;
  --bg: #0b0e0d;
  --bg-soft: #101412;
  --panel: #131816;
  --panel-hi: #171d1a;
  --line: rgba(231, 245, 236, 0.1);
  --line-hi: rgba(231, 245, 236, 0.18);
  --text: #edf5ef;
  --muted: #9ca9a0;
  --faint: #6f7b73;
  --green: #84f19a;
  --green-bright: #a1ffaf;
  --green-dark: #0f3b31;
  --green-soft: rgba(132, 241, 154, 0.1);
  --blue: #75a7ff;
  --orange: #ef8b63;
  --purple: #b58bff;
  --radius: 18px;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px);
  background-size: 52px 52px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 70%);
}

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

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

button {
  font: inherit;
}

code {
  font-family: var(--mono);
}

img,
svg {
  display: block;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  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: 10px 14px;
  transform: translateY(-150%);
  border-radius: 8px;
  background: var(--green);
  color: #07130b;
  font-weight: 700;
}

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

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  height: 74px;
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(11, 14, 13, 0.82);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 760;
  letter-spacing: -0.02em;
}

.brand-mark {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(132, 241, 154, 0.18);
  border-radius: 9px;
  box-shadow: 0 0 24px rgba(132, 241, 154, 0.08);
}

.brand-mark img {
  width: 100%;
  height: 100%;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 580;
}

.site-nav > a {
  transition: color 150ms ease;
}

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

.site-nav .nav-github {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border: 1px solid var(--line-hi);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--text);
}

.nav-github svg {
  width: 17px;
  fill: currentColor;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
}

.nav-toggle > span:not(.sr-only) {
  display: block;
  height: 1px;
  margin: 4px 0;
  background: var(--text);
}

.hero {
  position: relative;
  min-height: 900px;
  padding: 172px 0 78px;
  overflow: hidden;
}

.hero::after {
  position: absolute;
  z-index: -1;
  right: -140px;
  bottom: 60px;
  width: 580px;
  height: 580px;
  border: 1px solid rgba(132, 241, 154, 0.07);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 80px rgba(132, 241, 154, 0.018), 0 0 0 160px rgba(132, 241, 154, 0.012);
}

.hero-glow {
  position: absolute;
  z-index: -1;
  top: -260px;
  left: 46%;
  width: 780px;
  height: 780px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(71, 184, 101, 0.14), rgba(11, 14, 13, 0) 65%);
  filter: blur(8px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(430px, 0.95fr);
  align-items: center;
  gap: 88px;
}

.hero-copy {
  min-width: 0;
}

.eyebrow,
.kicker {
  color: var(--green);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 11px;
  border: 1px solid rgba(132, 241, 154, 0.14);
  border-radius: 999px;
  background: rgba(132, 241, 154, 0.055);
}

.pulse {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(132, 241, 154, 0.09);
}

.hero h1 {
  max-width: 700px;
  margin: 25px 0 23px;
  font-size: clamp(56px, 6.4vw, 88px);
  font-weight: 760;
  letter-spacing: -0.067em;
  line-height: 0.97;
}

.hero h1 span {
  display: block;
  color: var(--green);
}

.hero-lede {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.68;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.hero-actions {
  margin-top: 36px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 720;
  transition: transform 150ms ease, border-color 150ms ease, background 150ms ease, box-shadow 150ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button svg {
  width: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-primary {
  background: var(--green);
  color: #07150b;
  box-shadow: 0 10px 35px rgba(132, 241, 154, 0.13);
}

.button-primary:hover {
  background: var(--green-bright);
  box-shadow: 0 14px 42px rgba(132, 241, 154, 0.2);
}

.button-secondary {
  border-color: var(--line-hi);
  background: rgba(255, 255, 255, 0.025);
}

.button-secondary:hover {
  border-color: rgba(231, 245, 236, 0.28);
  background: rgba(255, 255, 255, 0.05);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 11px;
  margin-top: 28px;
  color: var(--faint);
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
}

.hero-proof i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #39413c;
}

.artifact-orbit {
  position: relative;
  min-height: 510px;
  perspective: 1200px;
}

.orbit-card-main {
  position: absolute;
  top: 35px;
  right: 0;
  width: min(100%, 480px);
  padding: 22px;
  transform: rotateY(-4deg) rotateX(1deg);
  border: 1px solid var(--line-hi);
  border-radius: 22px;
  background: linear-gradient(150deg, rgba(26, 33, 29, 0.97), rgba(15, 19, 17, 0.98));
  box-shadow: -30px 45px 100px rgba(0, 0, 0, 0.38), 0 0 80px rgba(132, 241, 154, 0.04);
}

.orbit-card-main::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.04), transparent 38%);
  content: "";
  pointer-events: none;
}

.orbit-top,
.orbit-row,
.orbit-action {
  position: relative;
  display: flex;
  align-items: center;
}

.orbit-top {
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.orbit-path {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 13px;
}

.orbit-total {
  color: var(--green);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
}

.orbit-bars {
  display: flex;
  height: 90px;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  border-bottom: 1px solid var(--line);
}

.orbit-bars span {
  display: block;
  width: var(--width);
  height: 5px;
  transform-origin: left;
  border-radius: 99px;
  background: linear-gradient(90deg, rgba(132, 241, 154, 0.65), rgba(132, 241, 154, 0.08));
  animation: bar-in 1.2s var(--delay) both cubic-bezier(0.2, 0.7, 0.2, 1);
}

@keyframes bar-in {
  from {
    transform: scaleX(0);
  }
}

.orbit-row {
  gap: 12px;
  min-height: 49px;
  border-bottom: 1px solid rgba(231, 245, 236, 0.06);
  font-size: 13px;
}

.orbit-row code {
  flex: 1;
  color: #ccd7d0;
}

.orbit-row b {
  font-family: var(--mono);
  font-size: 12px;
}

.file-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  box-shadow: 0 0 12px currentColor;
}

.dot-node {
  background: var(--green);
  color: var(--green);
}

.dot-rust {
  background: var(--orange);
  color: var(--orange);
}

.dot-python {
  background: var(--blue);
  color: var(--blue);
}

.dot-jvm {
  background: var(--purple);
  color: var(--purple);
}

.orbit-action {
  justify-content: space-between;
  padding-top: 20px;
  color: var(--faint);
  font-size: 11px;
}

.orbit-action strong {
  padding: 9px 12px;
  border-radius: 9px;
  background: var(--green);
  color: #07150b;
  font-size: 12px;
}

.float-chip {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 13px;
  border: 1px solid var(--line-hi);
  border-radius: 12px;
  background: rgba(20, 26, 23, 0.93);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.3);
  color: #dce6df;
  font-size: 12px;
  font-weight: 650;
  backdrop-filter: blur(12px);
  animation: float 5s ease-in-out infinite;
}

.chip-icon {
  display: grid;
  min-width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 7px;
  background: var(--green-soft);
  color: var(--green);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 800;
}

.float-chip-one {
  top: 4px;
  right: 60px;
}

.float-chip-two {
  right: -24px;
  bottom: 24px;
  animation-delay: -1.4s;
}

.float-chip-three {
  bottom: 76px;
  left: -24px;
  animation-delay: -2.8s;
}

@keyframes float {
  50% {
    transform: translateY(-8px);
  }
}

.artifact-strip {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 62px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}

.strip-label {
  flex: 0 0 auto;
  color: var(--faint);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.artifact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.artifact-list code {
  padding: 6px 9px;
  border: 1px solid rgba(231, 245, 236, 0.08);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.018);
  color: #7f8c83;
  font-size: 11px;
}

.section {
  padding: 120px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 54px;
}

.section-heading.compact {
  margin-bottom: 60px;
}

.section-heading h2,
.cli-copy h2,
.cta-card h2 {
  margin: 13px 0 0;
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 730;
  letter-spacing: -0.055em;
  line-height: 1.05;
}

.section-heading p,
.cli-copy > p {
  max-width: 650px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.showcase {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, #0d110f 0%, var(--bg) 100%);
}

.app-frame {
  overflow: hidden;
  border: 1px solid var(--line-hi);
  border-radius: 20px;
  background: #16171a;
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.35), 0 0 0 8px rgba(255, 255, 255, 0.012);
}

.frame-topbar,
.terminal-bar {
  display: flex;
  align-items: center;
  min-height: 46px;
  border-bottom: 1px solid var(--line);
}

.frame-topbar {
  justify-content: space-between;
  padding: 0 16px;
  background: #131613;
  color: var(--faint);
  font-family: var(--mono);
  font-size: 10px;
}

.traffic {
  display: flex;
  gap: 6px;
}

.traffic span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3d453f;
}

.traffic span:first-child {
  background: #e06b61;
}

.traffic span:nth-child(2) {
  background: #dda94f;
}

.traffic span:nth-child(3) {
  background: #5fbd75;
}

.frame-topbar a {
  transition: color 150ms ease;
}

.frame-topbar a:hover {
  color: var(--green);
}

.app-frame > img {
  width: 100%;
  height: auto;
}

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

.feature-card {
  position: relative;
  min-height: 300px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(22, 28, 25, 0.8), rgba(15, 19, 17, 0.72));
}

.feature-card::after {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(132, 241, 154, 0.025);
  content: "";
}

.feature-wide {
  display: grid;
  grid-column: span 2;
  grid-template-columns: 56px minmax(250px, 0.8fr) minmax(310px, 1.2fr);
  align-items: start;
  gap: 22px;
  min-height: 245px;
}

.feature-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 50px;
  border: 1px solid rgba(132, 241, 154, 0.15);
  border-radius: 13px;
  background: var(--green-soft);
  color: var(--green);
}

.feature-wide .feature-icon {
  margin: 0;
}

.feature-icon svg {
  width: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h3,
.steps h3 {
  margin: 0 0 10px;
  font-size: 20px;
  letter-spacing: -0.025em;
}

.feature-card p,
.steps p {
  max-width: 540px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.feature-card p code {
  color: #c4d0c7;
  font-size: 0.92em;
}

.ecosystem-cloud {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: flex-end;
  gap: 8px;
  padding: 15px;
}

.ecosystem-cloud span {
  padding: 10px 14px;
  transform: rotate(var(--rotation, 0deg));
  border: 1px solid var(--line-hi);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  color: #b9c5bd;
  font-family: var(--mono);
  font-size: 11px;
}

.ecosystem-cloud span:nth-child(2) {
  --rotation: 2deg;
}

.ecosystem-cloud span:nth-child(3) {
  --rotation: -2deg;
}

.ecosystem-cloud span:nth-child(5) {
  --rotation: 3deg;
}

.rules-preview {
  align-self: center;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(7, 10, 8, 0.35);
}

.rules-preview > div {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  border-bottom: 1px solid var(--line);
  color: #c9d3cc;
  font-size: 12px;
}

.rules-preview > div:last-child {
  border: 0;
}

.rules-preview .dim {
  opacity: 0.45;
}

.rules-preview code {
  color: var(--faint);
  font-size: 11px;
}

.toggle {
  position: relative;
  width: 28px;
  height: 16px;
  border-radius: 99px;
  background: #343b36;
}

.toggle::after {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #88938c;
  content: "";
}

.toggle.on {
  background: rgba(132, 241, 154, 0.24);
}

.toggle.on::after {
  left: 15px;
  background: var(--green);
}

.workflow {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0d100f;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 38px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.steps li {
  position: relative;
}

.step-number {
  color: var(--green);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
}

.step-line {
  height: 1px;
  margin: 19px 0 28px;
  background: linear-gradient(90deg, var(--green) 0 30%, var(--line) 30% 100%);
}

.cli-section {
  position: relative;
  overflow: hidden;
}

.cli-section::before {
  position: absolute;
  top: 50%;
  left: 55%;
  width: 700px;
  height: 700px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(132, 241, 154, 0.055), transparent 65%);
  content: "";
  pointer-events: none;
}

.cli-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 92px;
}

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

.cli-copy code {
  color: #c7d2ca;
  font-size: 0.9em;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 28px;
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
}

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

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

.terminal {
  overflow: hidden;
  transform: rotate(1deg);
  border: 1px solid var(--line-hi);
  border-radius: 17px;
  background: #0a0d0b;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.35);
}

.terminal-bar {
  position: relative;
  padding: 0 16px;
  background: #121613;
}

.terminal-bar > span {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  color: var(--faint);
  font-family: var(--mono);
  font-size: 10px;
}

.terminal-body {
  min-height: 350px;
  padding: 30px;
  color: #dce7df;
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.8;
}

.terminal-body p {
  margin: 0;
}

.terminal-body em {
  color: var(--green);
  font-style: normal;
}

.prompt {
  margin-right: 9px;
  color: var(--green);
  font-weight: 800;
}

.terminal-body .output {
  padding-left: 21px;
  color: #829087;
}

.terminal-body .output b {
  float: right;
  color: #c6d1c9;
  font-weight: 500;
}

.tree {
  margin-right: 9px;
  color: #465149;
}

.terminal-body .summary {
  margin: 11px 0 21px 21px;
  color: var(--green);
}

.terminal-body .muted {
  color: #667169;
}

.cursor {
  display: inline-block;
  width: 7px;
  height: 14px;
  margin: 9px 0 0 21px;
  background: var(--green);
  animation: blink 1.1s steps(2, jump-none) infinite;
}

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

.final-cta {
  padding-top: 40px;
}

.cta-card {
  position: relative;
  display: flex;
  min-height: 320px;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: 65px;
  overflow: hidden;
  border-radius: 24px;
  background: var(--green);
  color: #07140a;
}

.cta-card::before,
.cta-card::after {
  position: absolute;
  border: 1px solid rgba(7, 20, 10, 0.12);
  border-radius: 50%;
  content: "";
}

.cta-card::before {
  top: -210px;
  right: -40px;
  width: 500px;
  height: 500px;
}

.cta-card::after {
  top: -140px;
  right: 30px;
  width: 360px;
  height: 360px;
}

.cta-card > * {
  position: relative;
  z-index: 1;
}

.cta-card .kicker {
  color: rgba(7, 20, 10, 0.64);
}

.cta-card h2 {
  max-width: 680px;
  font-size: clamp(38px, 4.6vw, 60px);
}

.cta-actions {
  flex: 0 0 auto;
  justify-content: flex-end;
}

.button-light {
  background: #07140a;
  color: var(--text);
}

.button-ghost {
  border-color: rgba(7, 20, 10, 0.24);
  color: #07140a;
}

.button-ghost:hover {
  background: rgba(7, 20, 10, 0.08);
}

.site-footer {
  padding: 38px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
}

.footer-grid p {
  margin: 0;
  color: var(--faint);
  font-size: 12px;
}

.footer-links {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 12px;
}

.footer-links a:hover {
  color: var(--text);
}

.has-js [data-animate] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.has-js [data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.has-js .feature-grid [data-animate]:nth-child(2),
.has-js .steps [data-animate]:nth-child(2) {
  transition-delay: 90ms;
}

.has-js .feature-grid [data-animate]:nth-child(3),
.has-js .steps [data-animate]:nth-child(3) {
  transition-delay: 180ms;
}

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

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

.faq-item {
  padding: 28px 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(22, 28, 25, 0.8), rgba(15, 19, 17, 0.72));
}

.faq-item h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 640;
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.faq-item p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.faq-item code {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--green);
}

.faq-item a {
  color: var(--text);
  text-decoration-color: var(--line-hi);
  text-underline-offset: 3px;
}

.faq-item a:hover {
  text-decoration-color: var(--green);
}

@media (max-width: 1020px) {
  .hero {
    padding-top: 145px;
  }

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

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

  .hero h1 span {
    display: inline;
  }

  .artifact-orbit {
    width: min(620px, 90%);
    margin-inline: auto;
  }

  .orbit-card-main {
    right: 50%;
    transform: translateX(50%);
  }

  .float-chip-one {
    right: 80px;
  }

  .float-chip-two {
    right: 20px;
  }

  .float-chip-three {
    left: 10px;
  }

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

  .cli-copy {
    max-width: 700px;
  }

  .terminal {
    width: min(760px, 100%);
    transform: none;
  }

  .cta-card {
    align-items: flex-start;
    flex-direction: column;
    gap: 38px;
  }

  .cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(100% - 32px, 1180px);
  }

  .site-header {
    height: 66px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 58px;
    right: 16px;
    left: 16px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 4px;
    padding: 12px;
    border: 1px solid var(--line-hi);
    border-radius: 14px;
    background: rgba(16, 20, 18, 0.98);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
  }

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

  .site-nav > a {
    padding: 11px 12px;
  }

  .site-nav .nav-github {
    margin-top: 4px;
  }

  .hero {
    min-height: auto;
    padding: 118px 0 65px;
  }

  .hero-grid {
    gap: 38px;
  }

  .hero h1 {
    margin-top: 21px;
    font-size: clamp(48px, 15vw, 70px);
  }

  .hero h1 span {
    display: block;
  }

  .hero-lede {
    font-size: 17px;
    line-height: 1.62;
  }

  .artifact-orbit {
    width: 100%;
    min-height: 475px;
  }

  .orbit-card-main {
    top: 30px;
    width: 100%;
    padding: 18px;
  }

  .float-chip-one {
    top: 0;
    right: 14px;
  }

  .float-chip-two {
    right: 4px;
    bottom: 12px;
  }

  .float-chip-three {
    bottom: 55px;
    left: 4px;
  }

  .artifact-strip {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    margin-top: 35px;
  }

  .section {
    padding: 85px 0;
  }

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

  .frame-title {
    display: none;
  }

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

  .faq-item {
    padding: 24px;
  }

  .feature-card,
  .feature-wide {
    display: block;
    grid-column: auto;
    min-height: 270px;
    padding: 24px;
  }

  .feature-wide .feature-icon,
  .feature-icon {
    margin-bottom: 42px;
  }

  .ecosystem-cloud,
  .rules-preview {
    margin-top: 28px;
  }

  .ecosystem-cloud {
    justify-content: flex-start;
    padding: 0;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .step-line {
    margin-bottom: 22px;
  }

  .cli-grid {
    gap: 40px;
  }

  .terminal-body {
    min-height: 315px;
    padding: 22px 18px;
    overflow-x: auto;
    font-size: 11px;
    white-space: nowrap;
  }

  .cta-card {
    min-height: 0;
    padding: 42px 28px;
  }

  .cta-actions {
    width: 100%;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 440px) {
  .hero-actions .button {
    width: 100%;
  }

  .hero-proof {
    gap: 8px;
  }

  .orbit-action span {
    display: none;
  }

  .orbit-action {
    justify-content: flex-end;
  }

  .float-chip-three {
    display: none;
  }

  .feature-card {
    min-height: 240px;
  }

  .frame-topbar a {
    font-size: 9px;
  }
}

@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;
  }

  .has-js [data-animate] {
    opacity: 1;
    transform: none;
  }
}
