:root {
  color-scheme: light;
  --page: #f5f6f8;
  --surface: #ffffff;
  --surface-2: #eceef2;
  --ink: #16171a;
  --muted: #666b73;
  --line: #d9dce2;
  --line-strong: #bdc1c9;
  --red: #e3423f;
  --red-dark: #b8292b;
  --green: #24a866;
  --blue: #2378e8;
  --violet: #7f5be8;
  --teal: #168d8b;
  --shadow: 0 14px 32px rgba(23, 27, 34, 0.10);
  --shadow-small: 0 7px 18px rgba(23, 27, 34, 0.09);
  --nav-height: 70px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

html[data-theme="dark"] {
  color-scheme: dark;
  --page: #101113;
  --surface: #191b1f;
  --surface-2: #23262b;
  --ink: #f5f6f8;
  --muted: #a6abb3;
  --line: #30343a;
  --line-strong: #444951;
  --red: #ff6662;
  --red-dark: #ef4e4a;
  --green: #4bd18b;
  --blue: #67a5ff;
  --violet: #a68aff;
  --teal: #52c8c3;
  --shadow: 0 16px 34px rgba(0, 0, 0, 0.34);
  --shadow-small: 0 8px 20px rgba(0, 0, 0, 0.30);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 24px);
}

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  letter-spacing: 0;
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
}

svg {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-height);
  border-bottom: 1px solid color-mix(in srgb, var(--line) 72%, transparent);
  background: color-mix(in srgb, var(--page) 90%, transparent);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(1180px, calc(100% - 40px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 18px;
  white-space: nowrap;
}

.brand-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid var(--line);
}

.icon-dark {
  display: none;
}

html[data-theme="dark"] .icon-light {
  display: none;
}

html[data-theme="dark"] .icon-dark {
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.nav-links a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  transition: color 160ms ease;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-switch {
  height: 34px;
  padding: 3px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--surface-2);
}

.language-option {
  min-width: 36px;
  border: 0;
  border-radius: 5px;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  cursor: pointer;
}

.language-option.active {
  background: var(--surface);
  color: var(--ink);
  box-shadow: 0 1px 4px rgba(20, 25, 32, 0.12);
}

.icon-button,
.copy-button {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 7px;
  display: inline-grid;
  place-items: center;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease;
}

.icon-button:hover,
.copy-button:hover {
  transform: translateY(-1px);
  border-color: var(--line-strong);
}

.hero {
  position: relative;
  height: calc(100svh - var(--nav-height) - 64px);
  min-height: 620px;
  max-height: 740px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.hero-inner {
  position: relative;
  width: min(1180px, calc(100% - 40px));
  min-height: inherit;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 5;
  width: min(610px, 56%);
  padding: 40px 0 44px;
}

.eyebrow,
.section-label {
  margin: 0 0 14px;
  color: var(--red-dark);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--green) 16%, transparent);
}

.hero h1 {
  margin: 0;
  font-size: 112px;
  line-height: 0.88;
  font-weight: 900;
}

.hero h1 small {
  display: block;
  margin-top: 20px;
  color: var(--muted);
  font-size: 34px;
  line-height: 1;
  font-weight: 650;
}

.hero-lead {
  max-width: 550px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 750;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-small);
}

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

.button-primary:hover {
  background: var(--red);
}

.button-secondary {
  border-color: var(--line-strong);
  background: var(--surface);
  color: var(--ink);
}

.install-command {
  width: min(100%, 440px);
  height: 50px;
  margin-top: 14px;
  padding: 0 7px 0 16px;
  border: 1px solid var(--line);
  border-radius: 7px;
  display: flex;
  align-items: center;
  gap: 11px;
  background: var(--surface);
  box-shadow: var(--shadow-small);
}

.install-command .prompt {
  color: var(--green);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-weight: 800;
}

.install-command code {
  min-width: 0;
  flex: 1;
  overflow: hidden;
  color: var(--ink);
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.copy-button {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  box-shadow: none;
}

.copy-button svg {
  width: 17px;
  height: 17px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 16px;
  color: var(--muted);
}

.hero-tags span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
}

.hero-tags svg {
  width: 16px;
  height: 16px;
  color: var(--ink);
}

.hero-tags b {
  font-weight: inherit;
}

.product-scene {
  position: absolute;
  z-index: 2;
  top: 20px;
  right: -60px;
  width: 620px;
  height: 690px;
}

.product-scene::before {
  content: "";
  position: absolute;
  inset: 118px 48px 10px 60px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-2);
}

.phone {
  position: absolute;
  width: 300px;
  height: 647px;
  padding: 8px;
  border: 1px solid #202226;
  border-radius: 34px;
  background: #151619;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.phone img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 27px;
  object-fit: cover;
  image-rendering: auto;
}

.phone-front {
  z-index: 3;
  right: 18px;
  bottom: 0;
}

.phone-back {
  z-index: 1;
  left: 18px;
  bottom: 22px;
  opacity: 0.82;
}

.phone-speaker {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 50%;
  width: 64px;
  height: 17px;
  border-radius: 12px;
  transform: translateX(-50%);
  background: #17181b;
}

.terminal-window {
  position: absolute;
  z-index: 6;
  top: 0;
  right: 0;
  width: 390px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: #16181c;
  color: #f1f3f5;
  box-shadow: var(--shadow);
  overflow: hidden;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.terminal-head {
  height: 38px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid #34373e;
  color: #9298a2;
  font-size: 11px;
}

.terminal-head > span:last-child {
  margin-left: 5px;
}

.window-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.window-dot.red { background: #ff625c; }
.window-dot.yellow { background: #f6bd41; }
.window-dot.green { background: #38c563; }

.terminal-body {
  padding: 16px 18px 18px;
  font-size: 12px;
  line-height: 1.55;
}

.terminal-body p {
  margin: 6px 0;
}

.term-muted { color: #8e96a3; }
.term-blue { color: #70a9ff; }
.term-success { color: #55d98d; }

.hero-signals {
  width: min(100%, 560px);
  margin-top: 16px;
}

.signal-inner {
  width: 100%;
  min-height: 58px;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.signal-item {
  min-width: 0;
  padding: 10px 12px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-content: center;
  gap: 2px 8px;
  border-right: 1px solid var(--line);
}

.signal-item:first-child {
  padding-left: 0;
}

.signal-item:last-child {
  padding-right: 0;
  border-right: 0;
}

.signal-item strong {
  grid-row: 1 / 3;
  align-self: center;
  font-size: 28px;
  line-height: 1;
}

.signal-item span {
  align-self: end;
  color: var(--ink);
  font-size: 11px;
  font-weight: 750;
}

.signal-item code,
.signal-item small {
  align-self: start;
  color: var(--muted);
  font-size: 10px;
}

.section {
  padding: 60px 0;
}

.section-inner {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
}

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

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

.section-heading h2,
.security-copy h2,
.download-inner h2 {
  margin: 0;
  font-size: 54px;
  line-height: 1.08;
}

.section-heading > p:last-child,
.security-copy > p,
.download-inner > div > p:last-child {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

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

.feature-card {
  min-height: 198px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow-small);
}

.feature-card.feature-wide {
  grid-column: 1 / -1;
  min-height: 146px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
}

.live-card {
  grid-template-columns: auto 1fr;
}

.feature-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  place-items: center;
}

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

.feature-card:not(.feature-wide) .feature-icon {
  margin-left: auto;
  margin-right: auto;
}

.feature-card:not(.feature-wide) {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.feature-icon.green { color: var(--green); background: color-mix(in srgb, var(--green) 10%, var(--surface)); }
.feature-icon.blue { color: var(--blue); background: color-mix(in srgb, var(--blue) 10%, var(--surface)); }
.feature-icon.red { color: var(--red); background: color-mix(in srgb, var(--red) 10%, var(--surface)); }
.feature-icon.violet { color: var(--violet); background: color-mix(in srgb, var(--violet) 10%, var(--surface)); }
.feature-icon.teal { color: var(--teal); background: color-mix(in srgb, var(--teal) 10%, var(--surface)); }
.feature-icon.dark { color: var(--ink); background: var(--surface-2); }

.feature-card h3 {
  margin: 0;
  font-size: 19px;
}

.feature-card p {
  max-width: 640px;
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.status-demo {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
}

.live-card .status-demo {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.status-demo span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.dot.running { background: var(--blue); }
.dot.success { background: var(--green); }
.dot.failed { background: var(--red); }

.security-card {
  background: #16181c;
  color: #f4f5f7;
}

html[data-theme="dark"] .security-card {
  background: #f2f3f5;
  color: #14161a;
}

.security-card p {
  color: #aeb3bd;
}

html[data-theme="dark"] .security-card p {
  color: #646a73;
}

.security-card .feature-icon {
  color: inherit;
  background: transparent;
  border-color: #444850;
}

.cipher {
  max-width: 290px;
  padding: 10px 13px;
  border: 1px solid #3b3e45;
  border-radius: 6px;
  color: #70d69d;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  white-space: nowrap;
}

html[data-theme="dark"] .cipher {
  border-color: #c8cbd1;
  color: #147844;
}

.how-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.step {
  position: relative;
  min-height: 178px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-right: 1px solid var(--line);
  background: var(--page);
}

.step:last-child {
  border-right: 0;
}

.step-number {
  position: absolute;
  top: 24px;
  right: 24px;
  color: var(--line-strong);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 20px;
  font-weight: 800;
}

.step > svg {
  width: 36px;
  height: 36px;
  margin: 0 auto 20px;
  display: block;
  color: var(--red-dark);
}

.step h3 {
  margin: 0 0 14px;
  font-size: 18px;
}

.step code {
  color: var(--muted);
  font-size: 12px;
}

.quick-terminal {
  margin-top: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  overflow: hidden;
  box-shadow: var(--shadow-small);
}

.quick-terminal-copy {
  padding: 28px;
  background: var(--page);
}

.quick-terminal-copy h3 {
  margin: 0;
  font-size: 28px;
}

.quick-terminal-copy > p:last-child {
  color: var(--muted);
  line-height: 1.7;
}

.terminal-code {
  padding: 32px 38px;
  background: #16181c;
  color: #f3f4f6;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  line-height: 1.65;
}

.terminal-code p {
  margin: 4px 0;
  overflow-wrap: anywhere;
}

.terminal-code p:nth-child(odd) {
  margin-top: 14px;
  color: #78808d;
}

.terminal-code p:first-child {
  margin-top: 0;
}

.terminal-code b {
  color: #53d68b;
}

.security-section {
  padding-bottom: 56px;
}

.security-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 52px;
}

.security-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.security-links a {
  height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  font-size: 13px;
  font-weight: 700;
}

.security-links svg {
  width: 17px;
  height: 17px;
}

.security-list {
  border-top: 1px solid var(--line);
}

.security-list div {
  min-height: 62px;
  padding: 0 6px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 700;
}

.security-list svg {
  color: var(--green);
}

.download-section {
  padding: 22px 0 64px;
}

.download-inner {
  width: min(900px, calc(100% - 40px));
  min-height: 172px;
  margin: 0 auto;
  padding: 30px 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.download-icon {
  width: 92px;
  height: 92px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.download-inner h2 {
  font-size: 38px;
}

.download-inner .section-label {
  margin-bottom: 12px;
}

footer {
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.footer-inner {
  width: min(1100px, calc(100% - 40px));
  min-height: 154px;
  margin: 0 auto;
  padding: 34px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 24px;
}

.footer-inner strong {
  font-size: 19px;
}

.footer-inner p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 22px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.footer-inner .official-addresses {
  grid-column: 1 / -1;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 5px 9px;
  line-height: 1.6;
}

.official-addresses a {
  color: var(--ink);
  overflow-wrap: anywhere;
}

.copyright {
  grid-column: 1 / -1;
  margin-top: 0 !important;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.toast {
  position: fixed;
  z-index: 200;
  right: 20px;
  bottom: 20px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--ink);
  color: var(--page);
  box-shadow: var(--shadow);
  font-size: 13px;
  font-weight: 700;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .hero h1 {
    font-size: 92px;
  }

  .hero h1 small {
    font-size: 30px;
  }

  .hero-copy {
    width: 58%;
  }

  .product-scene {
    right: -190px;
    transform: none;
  }

  .nav-links {
    gap: 18px;
  }

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

@media (max-width: 820px) {
  :root {
    --nav-height: 64px;
  }

  .nav-shell,
  .hero-inner,
  .section-inner,
  .download-inner,
  .footer-inner {
    width: min(100% - 28px, 680px);
  }

  .nav-links {
    display: none;
  }

  .hero {
    height: calc(100svh - var(--nav-height) - 56px);
    min-height: 550px;
    max-height: 760px;
  }

  .hero-inner {
    min-height: inherit;
    align-items: flex-start;
  }

  .hero-copy {
    width: 100%;
    padding: 54px 0 0;
  }

  .hero h1 {
    font-size: 72px;
  }

  .hero-lead {
    max-width: 580px;
  }

  .product-scene {
    top: 480px;
    right: 50%;
    width: 520px;
    height: 620px;
    transform: translateX(50%) scale(0.74);
    transform-origin: top center;
  }

  .signal-inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 0;
  }

  .signal-item,
  .signal-item:first-child {
    min-height: 58px;
    border: 0;
    border-right: 1px solid var(--line);
  }

  .signal-item strong {
    font-size: 26px;
  }

  .signal-item:last-child {
    border-right: 0;
  }

  .section {
    padding: 46px 0;
  }

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

  .feature-card.feature-wide {
    grid-column: auto;
    grid-template-columns: auto 1fr;
  }

  .status-demo,
  .cipher {
    grid-column: 1 / -1;
  }

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

  .step {
    min-height: 190px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .quick-terminal,
  .security-inner {
    grid-template-columns: 1fr;
  }

  .security-inner {
    gap: 30px;
  }

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

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

@media (max-width: 520px) {
  .signal-inner {
    width: 100%;
  }

  .signal-item,
  .signal-item:first-child {
    min-height: 52px;
    padding: 8px 6px;
  }

  .signal-item:first-child {
    padding-left: 0;
  }

  .signal-item:last-child {
    padding-right: 0;
  }

  .signal-item strong {
    font-size: 24px;
  }

  .signal-item span {
    font-size: 10px;
  }

  .signal-item code,
  .signal-item small {
    font-size: 9px;
  }

  .brand span {
    display: none;
  }

  .brand-icon {
    width: 36px;
    height: 36px;
  }

  .nav-actions {
    gap: 7px;
  }

  .language-option {
    min-width: 32px;
  }

  .hero {
    height: auto;
    min-height: 0;
    max-height: none;
  }

  .hero-inner {
    min-height: 0;
  }

  .hero-copy {
    padding: 42px 0 46px;
  }

  .eyebrow {
    margin-bottom: 16px;
  }

  .hero h1 small {
    margin-top: 14px;
  }

  .hero h1 {
    font-size: 58px;
  }

  .hero-lead {
    margin-top: 22px;
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    margin-top: 26px;
  }

  .button {
    min-width: 0;
    padding: 0 12px;
    font-size: 12px;
  }

  .product-scene {
    top: 6px;
    right: -176px;
    width: 520px;
    height: 620px;
    transform: scale(0.68);
    transform-origin: top right;
    opacity: 0.17;
    pointer-events: none;
  }

  .product-scene::before,
  .terminal-window {
    display: none;
  }

  .product-scene .phone {
    box-shadow: none;
  }

  .hero-tags {
    gap: 13px;
  }

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

  .section-heading h2,
  .security-copy h2 {
    font-size: 38px;
  }

  .download-inner h2 {
    font-size: 36px;
  }

  .feature-card,
  .feature-card.feature-wide {
    min-height: 0;
    padding: 20px;
    display: block;
  }

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

  .live-card {
    text-align: center;
  }

  .live-card .feature-icon {
    margin-left: auto;
    margin-right: auto;
  }

  .live-card p {
    margin-left: auto;
    margin-right: auto;
  }

  .status-demo {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
  }

  .live-card .status-demo {
    justify-content: center;
  }

  .step {
    min-height: 78px;
    padding: 14px 48px 14px 14px;
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 14px;
    row-gap: 2px;
    text-align: left;
  }

  .step-number {
    top: 50%;
    right: 16px;
    font-size: 14px;
    transform: translateY(-50%);
  }

  .step > svg {
    grid-column: 1;
    grid-row: 1 / 3;
    width: 28px;
    height: 28px;
    margin: 0;
    place-self: center;
  }

  .step h3 {
    grid-column: 2;
    grid-row: 1;
    align-self: end;
    margin: 0;
    font-size: 16px;
  }

  .step code {
    grid-column: 2;
    grid-row: 2;
    align-self: start;
    font-size: 11px;
  }

  .cipher {
    margin-top: 18px;
  }

  .cipher {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .quick-terminal-copy,
  .terminal-code {
    padding: 26px;
  }

  .download-inner {
    padding: 28px;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .download-icon {
    margin: 0 auto;
  }

  .download-inner .button {
    grid-column: auto;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
