:root {
  --ink: #070806;
  --paper: #f0eee6;
  --acid: #d9ff56;
  --muted: #a4a69d;
  --line: rgba(240, 238, 230, 0.16);
  --page-gutter: max(3.2vw, calc((100vw - 1600px) / 2));
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-io: cubic-bezier(0.65, 0, 0.35, 1);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--paper);
  background:
    radial-gradient(
      circle at 70% 20%,
      rgba(67, 82, 38, 0.22),
      transparent 34rem
    ),
    var(--ink);
  font-family: "DM Mono", monospace;
  font-weight: 300;
}

html[lang="zh-CN"] body {
  font-family: "Noto Sans SC", sans-serif;
}

html[lang="zh-CN"] h1,
html[lang="zh-CN"] h2,
html[lang="zh-CN"] h3,
html[lang="zh-CN"] .ticker span {
  font-family: "Noto Sans SC", sans-serif;
  font-weight: 900;
  letter-spacing: -0.065em;
  text-transform: none;
}

html[lang="zh-CN"] h1 {
  max-width: 780px;
  font-size: clamp(72px, 7.1vw, 126px);
  letter-spacing: -0.055em;
  line-height: 1.02;
}

html[lang="zh-CN"] h1 span {
  margin-top: 0.1em;
}

html[lang="zh-CN"] .hero-intro {
  max-width: 560px;
  font-size: clamp(12px, 1vw, 15px);
  line-height: 1.8;
}

html[lang="zh-CN"] .hero-copy {
  transform: translateY(-12vh);
}

html[lang="zh-CN"] .principles-heading h2 {
  font-size: clamp(54px, 6.1vw, 98px);
  letter-spacing: -0.05em;
  line-height: 1.1;
}

html[lang="zh-CN"] .example-copy h2 {
  font-size: clamp(44px, 5.1vw, 78px);
  letter-spacing: -0.045em;
  line-height: 1.08;
}

html[lang="zh-CN"] .build-copy h2 {
  font-size: clamp(40px, 4.3vw, 68px);
  letter-spacing: -0.045em;
  line-height: 1.1;
}

html[lang="zh-CN"] .eyebrow,
html[lang="zh-CN"] nav,
html[lang="zh-CN"] .primary-button,
html[lang="zh-CN"] .build-copy > a {
  letter-spacing: 0.08em;
  text-transform: none;
}

a,
button {
  color: inherit;
}

a {
  text-decoration: none;
}

button {
  font: inherit;
}

::selection {
  color: var(--ink);
  background: var(--acid);
}

.noise {
  position: fixed;
  z-index: 20;
  inset: 0;
  opacity: 0.06;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  padding: 16px var(--page-gutter);
  border-bottom: 1px solid var(--line);
  opacity: 0;
  animation: enter-down 500ms var(--ease-out) 80ms forwards;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
}

.brand img {
  display: block;
  width: 132px;
  height: auto;
}

.product-suffix {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--acid);
  font-family: "Noto Sans SC", sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1;
  transform: translateY(3px);
}

.product-suffix::before {
  width: 1px;
  height: 26px;
  background: rgba(240, 238, 230, 0.28);
  content: "";
}

nav {
  display: flex;
  gap: 36px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

nav a {
  position: relative;
  color: var(--muted);
  transition: color 180ms var(--ease-out);
}

nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--acid);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms var(--ease-out);
}

nav a:hover {
  color: var(--paper);
}

nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.star-button {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
  padding: 11px 14px;
  border: 1px solid rgba(240, 238, 230, 0.32);
  font-size: 11px;
  text-transform: uppercase;
  transition:
    color 180ms var(--ease-out),
    background 180ms var(--ease-out),
    border-color 180ms var(--ease-out),
    transform 180ms var(--ease-out);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 17px;
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #62655d;
  font-size: 9px;
}

.language-switch button {
  padding: 5px 0;
  border: 0;
  color: inherit;
  background: none;
  cursor: pointer;
  font-size: inherit;
  letter-spacing: 0.06em;
  transition: color 180ms var(--ease-out);
}

.language-switch button[aria-pressed="true"] {
  color: var(--acid);
}

.language-switch button:hover {
  color: var(--paper);
}

.star-button svg {
  width: 15px;
}

.star-button:hover {
  color: var(--ink);
  border-color: var(--acid);
  background: var(--acid);
  transform: translateY(-2px);
}

.button-arrow {
  margin-left: 6px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  min-height: 100svh;
  padding: 104px var(--page-gutter) 72px;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(rgba(240, 238, 230, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240, 238, 230, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: 4vh 0 6vh;
  transform: translateY(-4vh);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 31px;
  color: var(--acid);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0;
  animation: enter-up 320ms var(--ease-out) 180ms forwards;
}

.eyebrow span {
  width: 28px;
  height: 1px;
  background: currentColor;
}

.eyebrow b {
  font-weight: 400;
}

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

h1 {
  max-width: 920px;
  margin-bottom: 28px;
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(68px, 8.5vw, 150px);
  font-weight: 400;
  letter-spacing: -0.075em;
  line-height: 0.82;
  text-transform: uppercase;
  opacity: 0;
  animation: enter-up 500ms var(--ease-out) 230ms forwards;
}

h1 span {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(240, 238, 230, 0.84);
}

.hero-intro {
  max-width: 610px;
  margin-bottom: 33px;
  color: #b8bab1;
  font-size: clamp(13px, 1.2vw, 16px);
  line-height: 1.75;
  opacity: 0;
  animation: enter-up 320ms var(--ease-out) 310ms forwards;
}

.hero-actions {
  display: flex;
  align-items: stretch;
  gap: 12px;
  opacity: 0;
  animation: enter-up 320ms var(--ease-out) 370ms forwards;
}

.primary-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  min-width: 205px;
  padding: 17px 18px;
  color: var(--ink);
  background: var(--acid);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition:
    transform 180ms var(--ease-out),
    box-shadow 180ms var(--ease-out);
}

.primary-button:hover {
  box-shadow: 0 12px 38px rgba(217, 255, 86, 0.17);
  transform: translateY(-3px);
}

.copy-command {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 285px;
  padding: 14px 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(7, 8, 6, 0.56);
  cursor: pointer;
  transition:
    border-color 180ms var(--ease-out),
    transform 180ms var(--ease-out);
}

.copy-command:hover {
  border-color: rgba(217, 255, 86, 0.55);
  transform: translateY(-2px);
}

.copy-command code {
  overflow: hidden;
  color: #aeb0a7;
  font:
    10px "DM Mono",
    monospace;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.copy-label {
  margin-left: auto;
  color: var(--acid);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.runtime-strip {
  display: flex;
  gap: 25px;
  margin-top: 34px;
  color: #70736b;
  font-size: 8px;
  letter-spacing: 0.08em;
}

.hero-visual {
  position: relative;
  z-index: 1;
  top: -3vh;
  min-height: 570px;
  opacity: 0;
  animation: core-enter 800ms var(--ease-out) 180ms forwards;
}

.hero-visual::before,
.hero-visual::after {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(217, 255, 86, 0.12);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.hero-visual::before {
  width: min(42vw, 650px);
  height: min(42vw, 650px);
}

.hero-visual::after {
  width: min(32vw, 490px);
  height: min(32vw, 490px);
  border-style: dashed;
}

#workflow-core {
  display: block;
  width: 100%;
  height: 100%;
  cursor: grab;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0, 0, 0, 0.18) 8%,
    #000 28%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0, 0, 0, 0.18) 8%,
    #000 28%
  );
  touch-action: pan-y;
}

#workflow-core.is-orbiting {
  cursor: grabbing;
}

.visual-label {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 9px;
  border: 1px solid rgba(240, 238, 230, 0.16);
  color: #a8aaa1;
  background: rgba(7, 8, 6, 0.68);
  font-size: 8px;
  letter-spacing: 0.1em;
  backdrop-filter: blur(8px);
}

.visual-label span {
  color: var(--acid);
}

.visual-label b {
  font-weight: 300;
}

.label-input {
  top: 24%;
  left: 6%;
}

.label-flow {
  top: 48%;
  right: 2%;
}

.label-agent {
  bottom: 19%;
  left: 15%;
}

.core-caption {
  position: absolute;
  right: 1%;
  bottom: 8%;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #7d8077;
  font-size: 8px;
  letter-spacing: 0.12em;
}

.live-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 12px var(--acid);
}

.scroll-cue {
  position: absolute;
  bottom: 27px;
  left: var(--page-gutter);
  display: flex;
  align-items: center;
  gap: 14px;
  color: #666961;
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: rotate(-90deg) translateY(100%);
  transform-origin: left bottom;
}

.scroll-cue i {
  display: block;
  width: 50px;
  height: 1px;
  background: #494c45;
}

.ticker {
  overflow: hidden;
  color: var(--ink);
  background: var(--acid);
  transform: rotate(-1.2deg) scale(1.02);
}

.ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  padding: 18px 0;
  animation: ticker 28s linear infinite;
}

.ticker span {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(17px, 2vw, 27px);
  letter-spacing: -0.04em;
}

.ticker i {
  margin: 0 32px;
  font-style: normal;
  font-size: 18px;
}

.principles {
  padding: 170px var(--page-gutter) 150px;
  color: var(--ink);
  background: var(--paper);
}

.section-index {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 63px;
  color: #595b54;
  font-size: 9px;
  letter-spacing: 0.13em;
}

.section-index span {
  display: grid;
  width: 30px;
  height: 30px;
  border: 1px solid #b6b6ae;
  border-radius: 50%;
  place-items: center;
}

.section-index p {
  margin: 0;
}

.principles-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
  align-items: end;
  gap: 8vw;
}

.principles-heading h2 {
  margin-bottom: 0;
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(48px, 7.2vw, 110px);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.89;
  text-transform: uppercase;
}

.principles-heading h2 em {
  color: transparent;
  font-style: normal;
  -webkit-text-stroke: 1.5px var(--ink);
}

.principles-heading > p {
  max-width: 400px;
  margin-bottom: 8px;
  color: #62645d;
  font-size: 12px;
  line-height: 1.8;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 100px;
  border-top: 1px solid #c8c7bf;
  border-bottom: 1px solid #c8c7bf;
}

.feature-grid article {
  position: relative;
  min-height: 380px;
  padding: 29px 30px 36px;
  border-right: 1px solid #c8c7bf;
}

.feature-grid article:last-child {
  border-right: 0;
}

.feature-number {
  color: #85877f;
  font-size: 9px;
}

.feature-grid svg {
  display: block;
  width: 80px;
  margin: 65px 0 47px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 1;
  transition: transform 220ms var(--ease-out);
}

.feature-grid article:hover svg {
  transform: rotate(8deg) scale(1.08);
}

.feature-grid h3 {
  margin-bottom: 13px;
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(19px, 2vw, 27px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1;
  text-transform: uppercase;
}

.feature-grid p {
  max-width: 350px;
  margin-bottom: 0;
  color: #6a6c65;
  font-size: 10px;
  line-height: 1.7;
}

.example-runner {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: center;
  gap: 8vw;
  min-height: 760px;
  padding: 110px var(--page-gutter);
  color: var(--ink);
  background: var(--acid);
}

.example-runner .section-index {
  margin-bottom: 46px;
  color: rgba(7, 8, 6, 0.62);
}

.example-runner .section-index span {
  border-color: rgba(7, 8, 6, 0.3);
}

.example-copy h2 {
  max-width: 620px;
  margin-bottom: 26px;
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(45px, 5.6vw, 86px);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.9;
  text-transform: uppercase;
}

.example-copy h2 em {
  color: transparent;
  font-style: normal;
  -webkit-text-stroke: 1.5px var(--ink);
}

.example-copy > p {
  max-width: 510px;
  margin-bottom: 32px;
  color: rgba(7, 8, 6, 0.65);
  font-size: 11px;
  line-height: 1.8;
}

.example-copy > a {
  display: inline-flex;
  gap: 16px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--ink);
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.example-terminal {
  overflow: hidden;
  border: 1px solid rgba(7, 8, 6, 0.9);
  background: var(--ink);
  box-shadow: 28px 28px 0 rgba(7, 8, 6, 0.12);
}

.example-terminal-stack {
  display: grid;
  gap: 20px;
}

.example-terminal-stack .example-terminal:last-child {
  transform: translateX(28px);
}

.terminal-chrome,
.terminal-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #777970;
  font-size: 9px;
  letter-spacing: 0.08em;
}

.terminal-chrome {
  padding: 17px 20px;
  border-bottom: 1px solid #292b25;
}

.terminal-chrome span:last-child,
.terminal-status span:first-child {
  color: var(--acid);
}

.example-command {
  width: 100%;
  min-width: 0;
  padding: 42px 34px;
  border: 0;
  background: transparent;
  text-align: left;
}

.example-command:hover {
  border-color: transparent;
  transform: none;
}

.example-command code {
  flex: 1;
  overflow: visible;
  color: var(--paper);
  font-size: clamp(11px, 1.05vw, 14px);
  line-height: 1.8;
  text-overflow: clip;
  white-space: normal;
}

.terminal-prompt {
  align-self: flex-start;
  color: var(--acid);
  font-size: 14px;
  line-height: 1.8;
}

.example-command .copy-label {
  align-self: flex-start;
  padding-top: 7px;
}

.terminal-status {
  padding: 14px 20px;
  border-top: 1px solid #292b25;
}

.terminal-status i {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--acid);
}

.build {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 8vw;
  min-height: 750px;
  padding: 145px var(--page-gutter);
  background:
    linear-gradient(120deg, rgba(217, 255, 86, 0.06), transparent 35%),
    var(--ink);
}

.section-index.light {
  color: #9c9e96;
}

.section-index.light span {
  border-color: #53554e;
}

.build-copy h2 {
  max-width: 560px;
  margin-bottom: 28px;
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(42px, 5vw, 75px);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.93;
  text-transform: uppercase;
}

.build-copy > p {
  max-width: 480px;
  margin-bottom: 36px;
  color: #8e9188;
  font-size: 11px;
  line-height: 1.8;
}

.build-copy > a {
  display: inline-flex;
  gap: 16px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--acid);
  color: var(--acid);
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.code-window {
  align-self: center;
  overflow: hidden;
  border: 1px solid #34362f;
  background: #0b0c09;
  box-shadow: 35px 35px 0 rgba(217, 255, 86, 0.035);
}

.code-chrome,
.code-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #777970;
  font-size: 9px;
  letter-spacing: 0.08em;
}

.code-chrome {
  padding: 17px 20px;
  border-bottom: 1px solid #292b25;
}

.code-chrome > div {
  display: flex;
  gap: 5px;
}

.code-chrome i {
  display: block;
  width: 6px;
  height: 6px;
  border: 1px solid #5e6158;
  border-radius: 50%;
}

.code-window pre {
  min-height: 430px;
  margin: 0;
  padding: 40px 38px;
  overflow-x: auto;
  font:
    clamp(10px, 1.05vw, 14px)/1.85 "DM Mono",
    monospace;
}

.code-faint {
  display: inline-block;
  width: 28px;
  color: #363931;
  user-select: none;
}

.code-pink {
  color: #ff8dae;
}

.code-green {
  color: var(--acid);
}

.code-blue {
  color: #8fd8ff;
}

.code-status {
  padding: 14px 20px;
  border-top: 1px solid #292b25;
}

.code-status span:first-child {
  color: var(--acid);
}

.code-status i {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--acid);
}

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 34px var(--page-gutter);
  border-top: 1px solid var(--line);
  color: #777970;
  font-size: 9px;
  text-transform: uppercase;
}

.footer-brand {
  color: var(--paper);
  text-transform: none;
}

footer p {
  margin: 0;
}

footer > div {
  display: flex;
  justify-self: end;
  gap: 26px;
}

footer a:hover {
  color: var(--acid);
}

@keyframes enter-up {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes enter-down {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes core-enter {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1000px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 145px;
  }

  .hero-copy {
    padding-bottom: 0;
    transform: none;
  }

  html[lang="zh-CN"] .hero-copy {
    transform: none;
  }

  .hero-visual {
    top: 0;
    min-height: min(82vw, 680px);
  }

  #workflow-core {
    -webkit-mask-image: none;
    mask-image: none;
  }

  .hero-visual::before {
    width: min(70vw, 650px);
    height: min(70vw, 650px);
  }

  .hero-visual::after {
    width: min(52vw, 490px);
    height: min(52vw, 490px);
  }

  .principles-heading {
    grid-template-columns: 1fr;
  }

  .example-runner {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 14px 20px;
  }

  nav {
    display: none;
  }

  .star-button {
    padding: 10px;
  }

  .header-actions {
    gap: 10px;
  }

  .site-header > .brand img {
    width: 108px;
  }

  .product-suffix {
    gap: 9px;
    font-size: 15px;
    transform: translateY(2px);
  }

  .product-suffix::before {
    height: 22px;
  }

  .star-button > span:not(.button-arrow) {
    display: none;
  }

  .hero {
    padding: 122px 20px 60px;
  }

  h1 {
    font-size: clamp(52px, 17vw, 88px);
  }

  html[lang="zh-CN"] h1 {
    font-size: clamp(50px, 14vw, 72px);
    line-height: 1.02;
  }

  html[lang="zh-CN"] .principles-heading h2,
  html[lang="zh-CN"] .example-copy h2,
  html[lang="zh-CN"] .build-copy h2 {
    font-size: clamp(38px, 12vw, 58px);
    line-height: 1.08;
  }

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

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

  .runtime-strip {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .hero-visual {
    min-height: 470px;
  }

  .hero-visual::before {
    width: 90vw;
    height: 90vw;
  }

  .hero-visual::after {
    width: 68vw;
    height: 68vw;
  }

  .label-input {
    left: 0;
  }

  .label-flow {
    right: 0;
  }

  .scroll-cue {
    display: none;
  }

  .principles {
    padding: 110px 20px 100px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    margin-top: 65px;
  }

  .feature-grid article {
    min-height: 330px;
    border-right: 0;
    border-bottom: 1px solid #c8c7bf;
  }

  .feature-grid article:last-child {
    border-bottom: 0;
  }

  .example-runner {
    min-height: 0;
    padding: 95px 20px 105px;
  }

  .example-terminal {
    box-shadow: 12px 12px 0 rgba(7, 8, 6, 0.12);
  }

  .example-terminal-stack {
    gap: 16px;
  }

  .example-terminal-stack .example-terminal:last-child {
    transform: none;
  }

  .example-command {
    align-items: flex-start;
    gap: 12px;
    padding: 30px 20px;
  }

  .example-command .copy-label {
    padding-top: 5px;
  }

  .feature-grid svg {
    margin: 45px 0 35px;
  }

  .build {
    padding: 110px 20px;
  }

  .code-window pre {
    padding: 28px 18px;
    font-size: 9px;
  }

  footer {
    grid-template-columns: 1fr auto;
    gap: 28px;
    padding: 30px 20px;
  }

  footer > p {
    display: none;
  }

  footer > div {
    gap: 15px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 80ms !important;
  }

  .ticker-track {
    animation: none !important;
  }
}
