:root {
  --night: #03030a;
  --night-2: #09091a;
  --panel: rgba(11, 13, 32, 0.86);
  --panel-2: #10132a;
  --grid: rgba(35, 242, 229, 0.14);
  --line: rgba(132, 113, 255, 0.28);
  --text: #f4f3ff;
  --muted: #9b9ab7;
  --cyan: #22f2e5;
  --pink: #ff3bc8;
  --violet: #806bff;
  --lime: #bcff47;
  --gold: #ffd466;
  --danger: #ff4d75;
  --shadow-cyan: 0 0 28px rgba(34, 242, 229, 0.22);
  --shadow-pink: 0 0 28px rgba(255, 59, 200, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 50% -5%, rgba(128, 107, 255, 0.17), transparent 36rem),
    linear-gradient(180deg, #070713, var(--night) 68%);
  font-family: "Microsoft YaHei", "PingFang SC", system-ui, sans-serif;
  line-height: 1.7;
}

body::before {
  position: fixed;
  z-index: -2;
  inset: 0;
  content: "";
  opacity: 0.52;
  background-image:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(#000, transparent 88%);
}

body::after {
  position: fixed;
  z-index: 90;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.06;
  background: repeating-linear-gradient(0deg, transparent 0 3px, #fff 4px);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.skip {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 8px 13px;
  color: #000;
  background: var(--cyan);
  transform: translateY(-160%);
}

.skip:focus {
  transform: translateY(0);
}

.frame {
  width: min(1220px, calc(100% - 48px));
  margin-inline: auto;
}

.system-bar {
  color: #787a9d;
  background: #020207;
  border-bottom: 1px solid rgba(34, 242, 229, 0.16);
  font-family: Consolas, monospace;
  font-size: 10px;
}

.system-inner {
  display: flex;
  min-height: 28px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.online {
  color: var(--lime);
}

.online::before {
  margin-right: 7px;
  content: "●";
  text-shadow: 0 0 9px var(--lime);
}

.header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(4, 4, 13, 0.86);
  backdrop-filter: blur(18px);
}

.nav {
  display: grid;
  min-height: 72px;
  align-items: center;
  grid-template-columns: auto 1fr auto;
  gap: 42px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.logo-mark {
  position: relative;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--night);
  background: var(--cyan);
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  box-shadow: var(--shadow-cyan);
  font-size: 18px;
  font-weight: 900;
}

.navlinks {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 29px;
  color: #aaa9c5;
  font-size: 13px;
  font-weight: 700;
}

.navlinks a {
  padding: 8px 0;
}

.navlinks a:hover,
.navlinks a[aria-current="page"] {
  color: var(--cyan);
  text-shadow: 0 0 14px rgba(34, 242, 229, 0.5);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language {
  color: #777893;
  font-family: Consolas, monospace;
  font-size: 10px;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 18px;
  color: var(--text);
  background: transparent;
  border: 1px solid var(--line);
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  transition: 0.2s ease;
}

.button:hover {
  color: #fff;
  border-color: var(--cyan);
  box-shadow: var(--shadow-cyan);
  transform: translateY(-2px);
}

.button-cyan {
  color: #020611;
  background: var(--cyan);
  border-color: var(--cyan);
}

.button-pink {
  color: #fff;
  background: linear-gradient(90deg, #9a3bff, var(--pink));
  border-color: var(--pink);
  box-shadow: var(--shadow-pink);
}

.menu {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  color: var(--cyan);
  background: #090a18;
  border: 1px solid var(--line);
}

.hero {
  position: relative;
  min-height: 730px;
  padding: 78px 0 48px;
  overflow: hidden;
}

.hero::before,
.hero::after {
  position: absolute;
  width: 520px;
  height: 520px;
  content: "";
  border: 1px solid rgba(128, 107, 255, 0.16);
  transform: rotate(45deg);
}

.hero::before {
  top: 80px;
  left: -360px;
}

.hero::after {
  top: 20px;
  right: -390px;
}

.hero-console {
  position: relative;
  z-index: 2;
  min-height: 540px;
  padding: 64px 80px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5, 5, 16, 0.98), rgba(5, 5, 16, 0.74) 37%, rgba(5, 5, 16, 0.5) 65%, rgba(5, 5, 16, 0.92)),
    url("2.jpg") center / cover;
  border: 1px solid rgba(34, 242, 229, 0.24);
  clip-path: polygon(28px 0, 100% 0, 100% calc(100% - 28px), calc(100% - 28px) 100%, 0 100%, 0 28px);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.45);
}

.hero-console::before {
  position: absolute;
  inset: 12px;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(255, 59, 200, 0.15);
  clip-path: inherit;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 740px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 19px;
  color: var(--cyan);
  font-family: Consolas, monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 35px;
  height: 1px;
  content: "";
  background: var(--pink);
  box-shadow: 0 0 9px var(--pink);
}

.hero h1,
.page-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(47px, 7vw, 88px);
  line-height: 1.03;
  letter-spacing: -0.07em;
  text-transform: uppercase;
}

.hero h1 span {
  color: transparent;
  -webkit-text-stroke: 1px var(--cyan);
  text-shadow: 0 0 28px rgba(34, 242, 229, 0.28);
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: #b2b3cf;
  font-size: 17px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 31px;
}

.hero-rocket {
  position: absolute;
  z-index: 2;
  width: 310px;
  max-height: 390px;
  right: 70px;
  bottom: 25px;
  object-fit: contain;
  opacity: 0.88;
  filter: saturate(1.25) drop-shadow(0 0 28px rgba(255, 59, 200, 0.35));
}

.hud-label {
  position: absolute;
  z-index: 4;
  right: 36px;
  padding: 8px 10px;
  color: var(--lime);
  background: rgba(2, 3, 10, 0.75);
  border-left: 2px solid var(--lime);
  font-family: Consolas, monospace;
  font-size: 10px;
}

.hud-a {
  top: 34px;
}

.hud-b {
  top: 78px;
  color: var(--cyan);
  border-color: var(--cyan);
}

.trust-line {
  display: grid;
  margin-top: 18px;
  background: rgba(7, 8, 21, 0.86);
  border: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
}

.trust-item {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #b3b2cc;
  font-size: 13px;
  font-weight: 800;
}

.trust-item + .trust-item {
  border-left: 1px solid var(--line);
}

.trust-item b {
  color: var(--cyan);
  font-family: Consolas, monospace;
  font-size: 11px;
}

.section {
  padding: 92px 0;
}

.section-layer {
  background: rgba(9, 10, 27, 0.82);
  border-block: 1px solid var(--line);
}

.section-head {
  display: grid;
  align-items: end;
  margin-bottom: 42px;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 0.4fr);
  gap: 50px;
}

.section-head.center {
  display: block;
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.12;
  letter-spacing: -0.045em;
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.section-head.center p {
  margin-top: 14px;
}

.data-ribbon {
  display: grid;
  background: #070813;
  border-block: 1px solid rgba(34, 242, 229, 0.26);
  grid-template-columns: repeat(4, 1fr);
}

.datum {
  position: relative;
  padding: 30px 26px;
}

.datum + .datum {
  border-left: 1px dashed rgba(34, 242, 229, 0.24);
}

.datum::before {
  position: absolute;
  top: 9px;
  left: 10px;
  color: #52536b;
  content: "SYS.DATA";
  font-family: Consolas, monospace;
  font-size: 8px;
}

.datum strong {
  display: block;
  color: var(--cyan);
  font-size: 31px;
  letter-spacing: -0.04em;
  text-shadow: 0 0 19px rgba(34, 242, 229, 0.28);
}

.datum span {
  color: #8d8da8;
  font-size: 12px;
}

.data-note {
  margin: 11px 0 0;
  color: #666782;
  font-size: 11px;
  text-align: right;
}

.feature-rail {
  position: relative;
  display: grid;
  margin: 0;
  padding: 0;
  gap: 22px;
  list-style: none;
}

.feature-rail::before {
  position: absolute;
  width: 1px;
  top: 0;
  bottom: 0;
  left: 50%;
  content: "";
  background: linear-gradient(var(--cyan), var(--pink));
  opacity: 0.45;
}

.feature-row {
  display: grid;
  min-height: 210px;
  align-items: center;
  background: linear-gradient(90deg, rgba(16, 19, 42, 0.9), rgba(7, 8, 20, 0.76));
  border: 1px solid var(--line);
  grid-template-columns: 0.75fr 1.25fr;
}

.feature-row:nth-child(even) {
  background: linear-gradient(270deg, rgba(16, 19, 42, 0.9), rgba(7, 8, 20, 0.76));
  grid-template-columns: 1.25fr 0.75fr;
}

.feature-code {
  display: grid;
  height: 100%;
  place-items: center;
  color: var(--pink);
  background:
    linear-gradient(rgba(255, 59, 200, 0.07), rgba(34, 242, 229, 0.04)),
    repeating-linear-gradient(45deg, transparent 0 12px, rgba(128, 107, 255, 0.08) 13px);
  border-right: 1px solid var(--line);
  font-family: Consolas, monospace;
  font-size: 38px;
  font-weight: 900;
  text-shadow: 0 0 20px rgba(255, 59, 200, 0.35);
}

.feature-row:nth-child(even) .feature-code {
  border-right: 0;
  border-left: 1px solid var(--line);
  order: 2;
}

.feature-body {
  padding: 32px 42px;
}

.feature-body h3 {
  margin: 0 0 9px;
  font-size: 24px;
}

.feature-body p {
  max-width: 690px;
  margin: 0;
  color: var(--muted);
}

.network-console {
  display: grid;
  min-height: 540px;
  overflow: hidden;
  background: #070814;
  border: 1px solid rgba(34, 242, 229, 0.24);
  grid-template-columns: 0.78fr 1.22fr;
}

.network-visual {
  position: relative;
  overflow: hidden;
  border-right: 1px solid var(--line);
}

.network-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.56;
  filter: hue-rotate(125deg) saturate(1.25) contrast(1.15);
}

.network-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, transparent, #070814),
    repeating-linear-gradient(0deg, transparent 0 14px, rgba(34, 242, 229, 0.06) 15px);
}

.network-table {
  padding: 30px;
}

.table-head,
.node-row {
  display: grid;
  align-items: center;
  grid-template-columns: 1.3fr 0.7fr 0.7fr 0.6fr;
  gap: 16px;
}

.table-head {
  padding: 10px 14px;
  color: #646684;
  border-bottom: 1px solid var(--line);
  font-family: Consolas, monospace;
  font-size: 9px;
  text-transform: uppercase;
}

.node-row {
  min-height: 68px;
  padding: 13px 14px;
  color: #adadc7;
  border-bottom: 1px solid rgba(128, 107, 255, 0.14);
  font-size: 12px;
}

.node-row:hover {
  background: rgba(34, 242, 229, 0.04);
}

.node-row strong {
  color: #fff;
}

.ping {
  color: var(--lime);
  font-family: Consolas, monospace;
}

.capacity {
  color: var(--cyan);
}

.node-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #8a8ba6;
}

.node-status::before {
  width: 6px;
  height: 6px;
  content: "";
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 9px var(--lime);
}

.signal-feed {
  display: grid;
  border-top: 1px solid var(--line);
}

.signal-row {
  display: grid;
  min-height: 120px;
  align-items: center;
  padding: 22px 28px;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 150px 1fr 220px;
  gap: 30px;
}

.signal-row:hover {
  background: rgba(128, 107, 255, 0.05);
}

.stars {
  color: var(--gold);
  letter-spacing: 3px;
}

.signal-row blockquote {
  margin: 0;
  color: #c5c5db;
  font-size: 15px;
}

.signal-author {
  color: #7d7e9a;
  font-size: 11px;
  text-align: right;
}

.signal-author strong {
  display: block;
  color: #fff;
}

.pricing-table {
  overflow: hidden;
  background: rgba(9, 10, 25, 0.88);
  border: 1px solid var(--line);
}

.price-row {
  display: grid;
  min-height: 76px;
  align-items: center;
  padding: 12px 20px;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: 20px;
  text-align: center;
}

.price-row:last-child {
  border-bottom: 0;
}

.price-row > :first-child {
  text-align: left;
}

.price-header {
  min-height: 110px;
  background: rgba(128, 107, 255, 0.06);
}

.price-header h3 {
  margin: 0;
}

.price-header strong {
  display: block;
  color: var(--cyan);
  font-size: 25px;
}

.price-header small {
  color: #777893;
}

.price-feature {
  color: #999ab5;
  font-size: 13px;
}

.yes {
  color: var(--lime);
}

.price-actions {
  padding-block: 20px;
}

.price-actions .button {
  width: min(100%, 160px);
}

.recommended {
  position: relative;
  background: rgba(255, 59, 200, 0.05);
}

.recommended::before {
  position: absolute;
  top: -9px;
  left: 50%;
  padding: 2px 7px;
  color: #08030a;
  content: "推荐";
  background: var(--pink);
  font-size: 9px;
  font-weight: 900;
  transform: translateX(-50%);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.faq-card {
  min-height: 210px;
  padding: 29px;
  background: #090a19;
}

.faq-number {
  color: var(--pink);
  font-family: Consolas, monospace;
  font-size: 11px;
}

.faq-card h3 {
  margin: 22px 0 9px;
}

.faq-card p,
.faq-card li {
  color: var(--muted);
  font-size: 13px;
}

.faq-card ol {
  margin-bottom: 0;
  padding-left: 20px;
}

.page-hero {
  padding: 72px 0 48px;
}

.page-hero-inner {
  position: relative;
  display: grid;
  min-height: 440px;
  align-items: center;
  padding: 56px;
  overflow: hidden;
  background: #080918;
  border: 1px solid var(--line);
  grid-template-columns: 1fr 0.72fr;
  gap: 50px;
}

.page-hero h1 {
  font-size: clamp(41px, 5.5vw, 67px);
}

.page-hero p {
  max-width: 660px;
  color: var(--muted);
}

.page-art {
  position: relative;
  height: 350px;
}

.page-art::before {
  position: absolute;
  inset: 10px;
  content: "";
  border: 1px solid rgba(34, 242, 229, 0.2);
  transform: rotate(8deg);
}

.page-art img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: saturate(1.25) drop-shadow(0 0 32px rgba(255, 59, 200, 0.3));
}

.download-shell,
.docs-shell {
  display: grid;
  min-height: 610px;
  overflow: hidden;
  background: #080914;
  border: 1px solid var(--line);
  grid-template-columns: 250px 1fr;
}

.terminal-aside,
.docs-aside {
  padding: 28px 22px;
  background: #05060e;
  border-right: 1px solid var(--line);
}

.terminal-title {
  color: var(--cyan);
  font-family: Consolas, monospace;
  font-size: 11px;
}

.terminal-nav,
.docs-nav {
  display: grid;
  margin-top: 28px;
  gap: 8px;
}

.terminal-nav a,
.docs-nav a {
  padding: 10px 11px;
  color: #8788a4;
  border-left: 2px solid transparent;
  font-size: 12px;
}

.terminal-nav a:hover,
.docs-nav a:hover {
  color: var(--cyan);
  background: rgba(34, 242, 229, 0.04);
  border-color: var(--cyan);
}

.terminal-main,
.docs-main {
  padding: 32px;
}

.terminal-prompt {
  margin-bottom: 22px;
  color: #72738f;
  font-family: Consolas, monospace;
  font-size: 11px;
}

.terminal-prompt b {
  color: var(--lime);
}

.release-stack {
  display: grid;
  gap: 12px;
}

.release {
  display: grid;
  min-height: 126px;
  align-items: center;
  padding: 20px;
  background: rgba(16, 18, 39, 0.78);
  border: 1px solid var(--line);
  grid-template-columns: 65px 1fr 180px;
  gap: 23px;
}

.release-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--cyan);
  border: 1px solid var(--cyan);
  font-size: 19px;
  font-weight: 900;
  box-shadow: inset 0 0 20px rgba(34, 242, 229, 0.08);
}

.release h3 {
  margin: 0;
}

.release p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.release .button {
  width: 100%;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.step {
  min-height: 220px;
  padding: 27px;
  background: #080915;
}

.step-code {
  color: var(--cyan);
  font-family: Consolas, monospace;
  font-size: 10px;
}

.step h3 {
  margin: 40px 0 8px;
}

.step p {
  color: var(--muted);
  font-size: 13px;
}

.docs-shell {
  grid-template-columns: 270px 1fr;
}

.docs-main {
  max-width: 870px;
  padding: 42px 50px;
}

.docs-main h2 {
  margin: 48px 0 12px;
  font-size: 29px;
}

.docs-main h2:first-child {
  margin-top: 0;
}

.docs-main h3 {
  margin: 27px 0 8px;
}

.docs-main p,
.docs-main li {
  color: var(--muted);
}

.command {
  margin: 25px 0;
  padding: 18px 20px;
  color: #b9bad0;
  background: #04050c;
  border-left: 3px solid var(--pink);
  font-size: 13px;
}

.command b {
  color: var(--cyan);
}

.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 40px 44px;
  background:
    linear-gradient(90deg, rgba(128, 107, 255, 0.2), rgba(255, 59, 200, 0.1)),
    #0b0c1d;
  border: 1px solid var(--pink);
  box-shadow: var(--shadow-pink);
}

.cta h2 {
  margin: 0;
}

.cta p {
  margin: 5px 0 0;
  color: var(--muted);
}

.footer {
  margin-top: 88px;
  padding: 54px 0 22px;
  color: #72738c;
  background: #010105;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 42px;
}

.footer p {
  max-width: 350px;
  font-size: 12px;
}

.footer h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 13px;
}

.footer-links {
  display: grid;
  gap: 8px;
  font-size: 12px;
}

.footer-links a:hover {
  color: var(--cyan);
}

.copyright {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 40px;
  padding-top: 18px;
  border-top: 1px solid #191a2a;
  font-family: Consolas, monospace;
  font-size: 10px;
}

@media (max-width: 980px) {
  .menu {
    display: block;
  }

  .navlinks {
    position: absolute;
    top: 72px;
    right: 24px;
    left: 24px;
    display: none;
    padding: 16px;
    background: #080916;
    border: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .navlinks.open {
    display: flex;
  }

  .navlinks a {
    padding: 8px;
  }

  .language,
  .nav-actions > .button {
    display: none;
  }

  .hero-console {
    padding: 50px;
  }

  .hero-rocket {
    right: -30px;
    opacity: 0.32;
  }

  .network-console,
  .page-hero-inner {
    grid-template-columns: 1fr;
  }

  .network-visual {
    height: 300px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .feature-rail::before {
    display: none;
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .frame {
    width: min(100% - 26px, 1220px);
  }

  .hero {
    padding-top: 46px;
  }

  .hero-console {
    min-height: 600px;
    padding: 38px 26px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-copy {
    font-size: 15px;
  }

  .hero-rocket {
    width: 220px;
    right: 0;
  }

  .hud-label {
    display: none;
  }

  .trust-line,
  .data-ribbon,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .trust-item {
    justify-content: flex-start;
    padding: 10px 18px;
  }

  .trust-item + .trust-item,
  .datum + .datum {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .section {
    padding: 66px 0;
  }

  .section-head {
    display: block;
  }

  .section-head p {
    margin-top: 12px;
  }

  .feature-row,
  .feature-row:nth-child(even) {
    grid-template-columns: 90px 1fr;
  }

  .feature-row:nth-child(even) .feature-code {
    border-right: 1px solid var(--line);
    border-left: 0;
    order: 0;
  }

  .feature-body {
    padding: 25px;
  }

  .table-head,
  .node-row {
    grid-template-columns: 1fr auto;
  }

  .table-head > :nth-child(2),
  .table-head > :nth-child(4),
  .node-row > :nth-child(2),
  .node-row > :nth-child(4) {
    display: none;
  }

  .signal-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .signal-author {
    text-align: left;
  }

  .pricing-table {
    overflow-x: auto;
  }

  .price-row {
    min-width: 720px;
  }

  .page-hero-inner {
    padding: 35px 24px;
  }

  .download-shell,
  .docs-shell {
    grid-template-columns: 1fr;
  }

  .terminal-aside,
  .docs-aside {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .terminal-nav,
  .docs-nav {
    grid-template-columns: repeat(2, 1fr);
  }

  .release {
    grid-template-columns: 55px 1fr;
  }

  .release .button {
    grid-column: 1 / -1;
  }

  .docs-main {
    padding: 30px 24px;
  }

  .cta,
  .copyright {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta {
    padding: 29px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 500px) {
  .hero h1 {
    font-size: 42px;
  }

  .feature-row,
  .feature-row:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .feature-code,
  .feature-row:nth-child(even) .feature-code {
    min-height: 90px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .steps {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
