:root {
  --ink: #181a20;
  --ink-soft: #1e2329;
  --panel: #2b3139;
  --panel-2: #363d47;
  --paper: #0b0e11;
  --mist: #181a20;
  --cloud: #1e2329;
  --white: #ffffff;
  --text: #eaecef;
  --muted: #848e9c;
  --line: #2b3139;
  --line-dark: #2b3139;
  --yellow: #fcd535;
  --yellow-dark: #f0b90b;
  --green: #0ecb81;
  --blue: #2b7cd3;
  --red: #f6465d;
  --violet: #7a6ee6;
  --orange: #f59e0b;
  --header-height: 72px;
  --page-pad: 32px;
  --max-width: 1240px;
}

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

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

.scroll-progress {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 220;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--yellow);
  transform-origin: left;
  will-change: width;
}

button,
select,
input {
  font: inherit;
}

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

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

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

canvas {
  display: block;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 4px;
  transform: translateY(-150%);
}

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

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  color: var(--text);
  background: rgba(11, 14, 17, 0.94);
  border-bottom: 1px solid var(--line);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.nav-shell {
  width: min(100%, calc(var(--max-width) + (var(--page-pad) * 2)));
  height: var(--header-height);
  margin: 0 auto;
  padding: 0 var(--page-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  flex: 0 0 auto;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  object-fit: cover;
}

.brand-pulse {
  width: 6px;
  height: 6px;
  margin-left: -4px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(14, 203, 129, 0.12);
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  padding: 25px 0 23px;
  color: #848e9c;
  font-size: 14px;
  white-space: nowrap;
  transition: color 180ms ease;
}

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

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

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.desktop-nav a.active::after {
  transform: scaleX(1);
}

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

.language-control {
  min-width: 132px;
  height: 40px;
  padding: 0 9px;
  display: inline-grid;
  grid-template-columns: 18px minmax(0, 1fr) 14px;
  align-items: center;
  gap: 6px;
  color: var(--text);
  background: #181a20;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.language-control svg {
  width: 16px;
  height: 16px;
}

.language-control select {
  min-width: 0;
  width: 100%;
  color: inherit;
  background: transparent;
  border: 0;
  outline: 0;
  appearance: none;
  cursor: pointer;
  font-size: 13px;
}

.language-control select option {
  color: var(--text);
  background: #181a20;
}

.button {
  min-height: 48px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease, background-color 180ms ease;
}

.button svg {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
}

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

.button:focus-visible,
.icon-button:focus-visible,
.strategy-tab:focus-visible,
.product-shot:focus-visible,
summary:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(77, 158, 255, 0.55);
  outline-offset: 3px;
}

.button-small {
  min-height: 40px;
  padding: 0 15px;
  font-size: 13px;
}

.button-primary {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background: var(--yellow);
  border-color: var(--yellow);
}

.button-primary::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -10px;
  width: 2px;
  background: rgba(255, 255, 255, 0.78);
  opacity: 0;
  transform: skewX(-18deg);
  animation: buttonSignal 4.8s ease-in-out infinite;
}

@keyframes buttonSignal {
  0%, 70%, 100% { left: -10px; opacity: 0; }
  76% { opacity: 0.8; }
  90% { left: calc(100% + 10px); opacity: 0; }
}

.button-primary:hover {
  background: var(--yellow-dark);
  border-color: var(--yellow-dark);
}

.button-ghost {
  color: var(--text);
  background: #181a20;
  border-color: #363d47;
}

.button-ghost:hover {
  background: #2b3139;
  border-color: #5e6673;
}

.button-dark {
  color: var(--white);
  background: #2b3139;
  border-color: #2b3139;
}

.button-dark:hover {
  color: var(--ink);
  background: var(--yellow);
  border-color: var(--yellow);
}

.button-outline {
  color: var(--text);
  background: transparent;
  border-color: #474d57;
}

.button-outline:hover {
  color: var(--ink);
  background: var(--yellow);
  border-color: var(--yellow);
}

.icon-button {
  width: 42px;
  height: 42px;
  padding: 0;
  display: inline-grid;
  place-items: center;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 6px;
  cursor: pointer;
}

.icon-button svg {
  width: 19px;
  height: 19px;
}

.menu-toggle {
  display: none;
  color: var(--text);
  border-color: #363d47;
}

.mobile-menu {
  padding: 12px var(--page-pad) 20px;
  background: #0b0e11;
  border-top: 1px solid var(--line);
}

.mobile-menu a {
  min-height: 50px;
  display: flex;
  align-items: center;
  color: var(--text);
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}

.hero {
  position: relative;
  min-height: calc(100svh - 56px);
  padding-top: var(--header-height);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: var(--text);
  background: #0b0e11;
  isolation: isolate;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  opacity: 0.52;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(11, 14, 17, 0.36);
  pointer-events: none;
}

.hero-rule {
  position: absolute;
  z-index: -1;
  background: rgba(255, 255, 255, 0.07);
}

.hero-rule-one {
  top: 18%;
  right: 6%;
  width: 1px;
  height: 68%;
}

.hero-rule-two {
  right: 0;
  bottom: 24%;
  width: 42%;
  height: 1px;
}

.hero-blocks {
  position: absolute;
  inset: var(--header-height) 0 90px;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.hero-block {
  position: absolute;
  min-height: 32px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #848e9c;
  background: rgba(24, 26, 32, 0.86);
  border: 1px solid #2b3139;
  border-radius: 4px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 9px;
  opacity: 0.62;
}

.hero-block svg {
  width: 13px;
  height: 13px;
  color: var(--yellow);
}

.hero-block-one {
  top: 23%;
  right: 34%;
  animation: blockFloatOne 8s ease-in-out infinite;
}

.hero-block-two {
  top: 49%;
  right: 43%;
  animation: blockFloatTwo 10s ease-in-out infinite 1.2s;
}

.hero-block-three {
  right: 30%;
  bottom: 20%;
  animation: blockFloatOne 9s ease-in-out infinite 2.4s;
}

@keyframes blockFloatOne {
  0%, 100% { opacity: 0.28; transform: translate3d(0, 10px, 0); }
  45%, 60% { opacity: 0.8; transform: translate3d(28px, -8px, 0); }
}

@keyframes blockFloatTwo {
  0%, 100% { opacity: 0.2; transform: translate3d(22px, -6px, 0); }
  50% { opacity: 0.72; transform: translate3d(-20px, 12px, 0); }
}

.hero-inner {
  width: min(100%, calc(var(--max-width) + (var(--page-pad) * 2)));
  margin: auto;
  padding: 54px var(--page-pad) 30px;
  position: relative;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
}

.hero-copy {
  width: min(650px, 58%);
  position: relative;
  z-index: 3;
}

.eyebrow {
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #848e9c;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow > span:first-child {
  width: 26px;
  height: 2px;
  flex: 0 0 auto;
  background: var(--yellow-dark);
}

.eyebrow.light {
  color: #aeb6bd;
}

.hero h1 {
  margin: 0;
  color: var(--text);
  font-family: "Arial Black", Inter, ui-sans-serif, sans-serif;
  font-size: 86px;
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--yellow);
  font-size: 30px;
  font-weight: 750;
  line-height: 1.25;
}

.hero-description {
  max-width: 610px;
  margin: 18px 0 0;
  color: #a7b0bd;
  font-size: 16px;
  line-height: 1.8;
}

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

.hero-badges {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.hero-badges > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #848e9c;
  font-size: 12px;
}

.hero-badges svg {
  width: 15px;
  height: 15px;
  color: var(--green);
}

.hero-product {
  position: absolute;
  top: 50%;
  right: 42px;
  width: 390px;
  height: 650px;
  z-index: 2;
  transform: translateY(-48%);
}

.phone-shell {
  position: absolute;
  top: 20px;
  right: 34px;
  width: 286px;
  height: 584px;
  padding: 9px;
  overflow: hidden;
  background: #080a0c;
  border: 1px solid #4b535c;
  border-radius: 32px;
  box-shadow: 0 34px 80px rgba(24, 26, 32, 0.25);
  transform: translate3d(var(--parallax-x, 0), var(--parallax-y, 0), 0) rotate(2deg);
  transition: transform 180ms ease-out;
}

.phone-shell::before {
  content: "";
  position: absolute;
  inset: 9px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 23px;
  pointer-events: none;
}

.phone-speaker {
  position: absolute;
  top: 17px;
  left: 50%;
  z-index: 4;
  width: 58px;
  height: 5px;
  background: #0b0d10;
  border-radius: 5px;
  transform: translateX(-50%);
}

.hero-shot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 24px;
}

.orbit-label {
  position: absolute;
  z-index: 5;
  min-height: 54px;
  padding: 11px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #d9dee3;
  background: rgba(23, 28, 34, 0.94);
  border: 1px solid #414951;
  border-radius: 6px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
  font-size: 12px;
}

.orbit-label-top {
  top: 82px;
  left: 0;
}

.orbit-label-bottom {
  right: 0;
  bottom: 74px;
}

.orbit-label svg {
  width: 20px;
  height: 20px;
  color: var(--yellow);
}

.orbit-label small,
.orbit-label strong {
  display: block;
  letter-spacing: 0;
}

.orbit-label small {
  color: #7f8992;
  font-size: 10px;
}

.orbit-label strong {
  margin-top: 2px;
  color: var(--white);
  font-size: 12px;
}

.status-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(47, 213, 155, 0.13);
  animation: statusPulse 1.8s ease-in-out infinite;
}

@keyframes statusPulse {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; }
}

.hero-stats {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: 0;
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(24, 26, 32, 0.96);
  border: 1px solid var(--line);
  border-bottom: 0;
}

.hero-stats > div {
  min-height: 88px;
  padding: 15px 24px;
  display: flex;
  align-items: center;
  gap: 13px;
  border-right: 1px solid var(--line);
}

.hero-stats > div:last-child {
  border-right: 0;
}

.hero-stats strong {
  min-width: 54px;
  color: var(--yellow);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 25px;
  line-height: 1;
}

.hero-stats span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.asset-rail {
  height: 56px;
  overflow: hidden;
  color: var(--muted);
  background: #181a20;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.rail-track {
  width: max-content;
  height: 100%;
  display: flex;
  align-items: center;
  animation: railMove 32s linear infinite;
}

.rail-set {
  display: flex;
  align-items: center;
}

.rail-set > span {
  min-width: 210px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-right: 1px solid var(--line);
  font-size: 11px;
  text-transform: uppercase;
}

.rail-set b {
  color: var(--white);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
}

.rail-set em {
  color: var(--green);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 10px;
  font-style: normal;
  transition: color 180ms ease, opacity 180ms ease;
}

.rail-set em.negative {
  color: var(--red);
}

.rail-set em.tick-flash {
  opacity: 0.35;
}

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

.chain-pulse {
  min-height: 258px;
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: #0b0e11;
  border-bottom: 1px solid var(--line);
}

#chainCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.9;
}

.chain-pulse-inner {
  width: min(100%, calc(var(--max-width) + (var(--page-pad) * 2)));
  min-height: 258px;
  margin: 0 auto;
  padding: 28px var(--page-pad);
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  pointer-events: none;
}

.chain-ledger {
  width: 100%;
  overflow: hidden;
}

.ledger-track {
  width: max-content;
  display: flex;
  align-items: center;
  animation: ledgerBreathe 12s ease-in-out infinite;
}

.ledger-track span {
  width: 176px;
  min-height: 58px;
  padding: 10px 22px 10px 14px;
  position: relative;
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: center;
  color: #a7b0bd;
  background: rgba(24, 26, 32, 0.9);
  border: 1px solid #363d47;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.ledger-track span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -17px;
  z-index: 2;
  width: 32px;
  height: 1px;
  background: var(--yellow-dark);
}

.ledger-track svg {
  grid-row: 1 / 3;
  width: 15px;
  height: 15px;
  color: var(--yellow);
}

.ledger-track b,
.ledger-track small {
  display: block;
  letter-spacing: 0;
}

.ledger-track b {
  font-size: 10px;
}

.ledger-track small {
  margin-top: 4px;
  color: #5e6673;
  font-size: 8px;
}

@keyframes ledgerBreathe {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(44px); }
}

.chain-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(11, 14, 17, 0.84);
  border-top: 1px solid #2b3139;
  border-left: 1px solid #2b3139;
}

.chain-metrics > div {
  min-height: 74px;
  padding: 14px 18px;
  position: relative;
  border-right: 1px solid #2b3139;
  border-bottom: 1px solid #2b3139;
}

.chain-metrics small,
.chain-metrics strong {
  display: block;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  letter-spacing: 0;
}

.chain-metrics small {
  color: #5e6673;
  font-size: 8px;
}

.chain-metrics strong {
  margin-top: 9px;
  color: var(--yellow);
  font-size: 14px;
  transition: opacity 160ms ease, transform 160ms ease;
}

.chain-metrics strong.metric-flash {
  opacity: 0.35;
  transform: translateY(-2px);
}

.live-indicator {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(14, 203, 129, 0.1);
  animation: statusPulse 1.5s ease-in-out infinite;
}

.section {
  position: relative;
  padding: 112px var(--page-pad);
}

.section-inner {
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

.section-light,
.strategy-section,
.product-section,
.faq-section {
  background: #0b0e11;
}

.section-light {
  border-bottom: 1px solid var(--line);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 52px;
}

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

.section-heading h2,
.operations-heading h2,
.exchange-copy h2,
.workflow-heading h2,
.usecases-section h2,
.product-heading h2,
.security-copy h2,
.download-heading h2,
.faq-heading h2 {
  margin: 0;
  color: var(--text);
  font-size: 44px;
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: 0;
}

.section-heading > p:last-child,
.operations-heading > p,
.product-heading > div > p:last-child,
.download-heading > div > p:last-child,
.faq-heading > p,
.exchange-copy > p,
.security-copy > p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.feature-card {
  min-height: 292px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  background: #181a20;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: color 220ms ease, background-color 220ms ease, transform 220ms ease;
}

.feature-card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 420ms ease;
}

.feature-card:hover::after {
  transform: scaleX(1);
}

.feature-card:hover {
  color: var(--text);
  background: #1e2329;
  transform: translateY(-4px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--ink);
  border-radius: 6px;
}

.feature-icon svg {
  width: 23px;
  height: 23px;
}

.feature-icon.yellow { background: #fcd535; }
.feature-icon.green { color: #087f54; background: #dff8ee; }
.feature-icon.blue { color: #2166a8; background: #e2effc; }
.feature-icon.red { color: #bd3045; background: #fde6ea; }
.feature-icon.violet { color: #5d51bc; background: #ece9ff; }
.feature-icon.orange { color: #a96600; background: #fff0d2; }

.feature-index {
  position: absolute;
  top: 32px;
  right: 28px;
  color: #5e6673;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
}

.feature-card h3 {
  margin: 34px 0 12px;
  font-size: 20px;
  line-height: 1.3;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
  transition: color 220ms ease;
}

.feature-card:hover p {
  color: var(--muted);
}

.operations-section {
  overflow: hidden;
  background: #181a20;
  border-bottom: 1px solid var(--line);
}

.operations-heading {
  margin-bottom: 44px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.72fr);
  align-items: end;
  gap: 72px;
}

.operations-heading h2 {
  max-width: 760px;
}

.operations-heading > p {
  margin-bottom: 2px;
}

.operations-console {
  overflow: hidden;
  color: var(--white);
  background: #181a20;
  border: 1px solid #2b3139;
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(24, 26, 32, 0.14);
}

.console-topbar {
  min-height: 58px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: #1e2329;
  border-bottom: 1px solid #2b3139;
}

.console-topbar > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.console-topbar strong {
  font-size: 12px;
}

.demo-label {
  padding: 5px 8px;
  color: #8d989f;
  border: 1px solid #3b454d;
  border-radius: 4px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 9px;
  text-transform: uppercase;
}

.console-grid {
  min-height: 440px;
  display: grid;
  grid-template-columns: 0.9fr 1.25fr 0.95fr;
}

.pipeline-panel,
.pulse-panel,
.feed-panel {
  min-width: 0;
  padding: 26px;
}

.pipeline-panel,
.pulse-panel {
  border-right: 1px solid #30383f;
}

.console-label {
  min-height: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #8d989f;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 10px;
  text-transform: uppercase;
}

.console-label svg {
  width: 16px;
  height: 16px;
  color: var(--yellow);
}

.console-label b {
  margin-left: auto;
  color: #d7dde1;
  font-size: 9px;
}

.pipeline-stages {
  margin-top: 18px;
  position: relative;
}

.pipeline-stages::before {
  content: "";
  position: absolute;
  top: 25px;
  bottom: 25px;
  left: 21px;
  width: 1px;
  background: #343d44;
}

.pipeline-stage {
  min-height: 74px;
  padding: 12px 12px 12px 0;
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr 20px;
  align-items: center;
  gap: 10px;
  color: #78838b;
  border-bottom: 1px solid #293138;
  transition: color 260ms ease, background-color 260ms ease, transform 260ms ease;
}

.pipeline-stage > span {
  z-index: 1;
  width: 42px;
  height: 24px;
  display: grid;
  place-items: center;
  background: #181a20;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 9px;
}

.pipeline-stage strong,
.pipeline-stage small {
  display: block;
}

.pipeline-stage strong {
  color: #b8c0c6;
  font-size: 12px;
}

.pipeline-stage small {
  margin-top: 4px;
  font-size: 10px;
  line-height: 1.45;
}

.pipeline-stage > svg {
  width: 16px;
  height: 16px;
}

.pipeline-stage.active {
  color: var(--yellow);
  background: #252a31;
  transform: translateX(5px);
}

.pipeline-stage.active strong {
  color: var(--white);
}

.pipeline-stage.active > span {
  color: var(--ink);
  background: var(--yellow);
  border-radius: 3px;
}

#operationsCanvas {
  width: 100%;
  height: 270px;
  margin-top: 16px;
  background: #0b0e11;
  border: 1px solid #293239;
}

.ops-metrics {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #30383f;
  border-left: 1px solid #30383f;
}

.ops-metrics > div {
  min-height: 62px;
  padding: 10px;
  border-right: 1px solid #30383f;
  border-bottom: 1px solid #30383f;
}

.ops-metrics span,
.ops-metrics strong {
  display: block;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 9px;
}

.ops-metrics span {
  color: #69747c;
}

.ops-metrics strong {
  margin-top: 8px;
  color: var(--yellow);
}

.ops-metrics .positive {
  color: var(--green);
}

.event-feed {
  margin-top: 18px;
  border-top: 1px solid #30383f;
}

.feed-event {
  min-height: 69px;
  padding: 13px 8px;
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 10px;
  color: #7c878f;
  border-bottom: 1px solid #30383f;
  font-size: 11px;
  line-height: 1.5;
  transition: color 240ms ease, background-color 240ms ease;
}

.feed-event time {
  color: #566169;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 9px;
}

.feed-event.active {
  color: var(--white);
  background: #252a31;
}

.feed-event.active time {
  color: var(--green);
}

.feed-panel > p {
  margin: 16px 0 0;
  color: #59646c;
  font-size: 9px;
  line-height: 1.6;
}

.exchange-band {
  padding: 86px var(--page-pad);
  color: var(--text);
  background: #0b0e11;
  border-bottom: 1px solid var(--line);
}

.exchange-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(480px, 1.2fr);
  gap: 74px;
  align-items: center;
}

.security-copy h2 {
  color: var(--white);
}

.exchange-copy > p {
  color: var(--muted);
}

.exchange-band .eyebrow.light {
  color: var(--muted);
}

.exchange-band .text-link {
  color: var(--yellow);
  border-color: var(--yellow-dark);
}

.text-link {
  margin-top: 26px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 750;
  border-bottom: 1px solid rgba(246, 197, 21, 0.45);
}

.text-link svg {
  width: 15px;
  height: 15px;
}

.exchange-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  box-shadow: 16px 18px 0 #181a20;
}

.exchange-grid span {
  min-height: 88px;
  padding: 12px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  color: var(--text);
  background: #181a20;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  font-weight: 800;
  transition: color 180ms ease, background-color 180ms ease;
}

.exchange-grid span::before {
  content: "";
  position: absolute;
  top: 12px;
  right: 12px;
  width: 5px;
  height: 5px;
  background: var(--green);
  border-radius: 50%;
  opacity: 0.42;
  animation: exchangePing 2.4s ease-in-out infinite;
}

.exchange-grid span:nth-child(2n)::before { animation-delay: 0.6s; }
.exchange-grid span:nth-child(3n)::before { animation-delay: 1.2s; }

@keyframes exchangePing {
  0%, 100% { opacity: 0.25; box-shadow: 0 0 0 0 rgba(14, 203, 129, 0); }
  50% { opacity: 1; box-shadow: 0 0 0 6px rgba(14, 203, 129, 0.08); }
}

.exchange-grid span:hover {
  color: var(--ink);
  background: var(--yellow);
}

.strategy-lab {
  color: var(--white);
  background: var(--ink-soft);
  border: 1px solid #2b3139;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(24, 26, 32, 0.12);
}

.strategy-tabs {
  min-height: 76px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid #303840;
}

.strategy-tab {
  padding: 12px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: #87919a;
  background: #14191e;
  border: 0;
  border-right: 1px solid #303840;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  transition: color 180ms ease, background-color 180ms ease;
}

.strategy-tab:last-child {
  border-right: 0;
}

.strategy-tab svg {
  width: 18px;
  height: 18px;
}

.strategy-tab:hover {
  color: var(--white);
}

.strategy-tab.active {
  color: var(--ink);
  background: var(--yellow);
}

.strategy-content {
  min-height: 480px;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
}

.strategy-copy {
  padding: 52px 46px;
  border-right: 1px solid #303840;
}

.strategy-code {
  color: var(--yellow);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
}

.strategy-copy h3 {
  margin: 20px 0 14px;
  color: var(--white);
  font-size: 31px;
  line-height: 1.2;
}

.strategy-copy > p {
  margin: 0;
  min-height: 84px;
  color: #9aa4ac;
  font-size: 14px;
  line-height: 1.8;
}

.strategy-facts {
  margin: 38px 0 0;
  border-top: 1px solid #303840;
}

.strategy-facts > div {
  min-height: 58px;
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid #303840;
}

.strategy-facts dt,
.strategy-facts dd {
  margin: 0;
  font-size: 12px;
}

.strategy-facts dt {
  color: #69747d;
}

.strategy-facts dd {
  color: #e3e7ea;
}

.strategy-visual {
  min-width: 0;
  padding: 30px 34px 22px;
  position: relative;
  background: #101419;
}

.chart-toolbar {
  min-height: 36px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  color: #7b868f;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 10px;
}

.chart-toolbar > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

#strategyChart {
  width: 100%;
  height: 334px;
}

.strategy-visual > p {
  margin: 14px 0 0;
  color: #5e6870;
  font-size: 10px;
}

.workflow-section {
  color: var(--text);
  background: #181a20;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.workflow-heading {
  max-width: 650px;
  margin-bottom: 50px;
}

.workflow-list {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.workflow-list li {
  min-height: 260px;
  padding: 28px;
  position: relative;
  background: #1e2329;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background-color 220ms ease, transform 220ms ease;
}

.workflow-list li::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 7px;
  height: 7px;
  background: var(--yellow);
  border-radius: 50%;
  opacity: 0.2;
  animation: workflowPulse 3.2s ease-in-out infinite;
}

.workflow-list li:nth-child(2)::after { animation-delay: 0.5s; }
.workflow-list li:nth-child(3)::after { animation-delay: 1s; }
.workflow-list li:nth-child(4)::after { animation-delay: 1.5s; }

@keyframes workflowPulse {
  0%, 100% { opacity: 0.16; transform: scale(0.75); }
  50% { opacity: 0.9; transform: scale(1.15); }
}

.workflow-list li:hover {
  background: #252a31;
  transform: translateY(-4px);
}

.workflow-list li > span {
  position: absolute;
  top: 24px;
  right: 24px;
  color: #9aa3a9;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
}

.workflow-list li > svg {
  width: 28px;
  height: 28px;
  color: var(--yellow);
}

.workflow-list h3 {
  margin: 64px 0 12px;
  font-size: 18px;
}

.workflow-list p {
  margin: 0;
  color: #69737a;
  font-size: 13px;
  line-height: 1.7;
}

.usecases-section {
  background: #0b0e11;
  border-bottom: 1px solid var(--line);
}

.usecase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.usecase-card {
  min-height: 340px;
  padding: 30px;
  position: relative;
  background: #181a20;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background-color 220ms ease, transform 220ms ease;
}

.usecase-card:hover {
  background: #1e2329;
  transform: translateY(-5px);
}

.usecase-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #8d969d;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 10px;
}

.usecase-top svg {
  width: 25px;
  height: 25px;
  color: var(--yellow-dark);
}

.usecase-card h3 {
  margin: 64px 0 14px;
  font-size: 21px;
  line-height: 1.3;
}

.usecase-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.usecase-tags {
  position: absolute;
  right: 30px;
  bottom: 28px;
  left: 30px;
  display: flex;
  gap: 8px;
}

.usecase-tags span {
  padding: 5px 8px;
  color: #a7b0bd;
  background: #2b3139;
  border-radius: 3px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 9px;
}

.product-section {
  overflow: hidden;
  background: #181a20;
  border-bottom: 1px solid var(--line);
}

.product-heading {
  margin-bottom: 44px;
  display: grid;
  grid-template-columns: minmax(0, 760px);
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.product-heading > div > p:last-child {
  max-width: 720px;
}

.shots-viewport {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  overscroll-behavior-inline: contain;
}

.shots-viewport::-webkit-scrollbar {
  display: none;
}

.shots-track {
  width: max-content;
  margin: 0 auto;
  padding: 4px 0 20px;
  display: flex;
  gap: 18px;
}

.product-shot {
  width: 276px;
  padding: 0;
  position: relative;
  flex: 0 0 auto;
  overflow: hidden;
  color: var(--white);
  background: var(--ink-soft);
  border: 1px solid #323a42;
  border-radius: 8px;
  scroll-snap-align: start;
  cursor: zoom-in;
}

.product-shot img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: top center;
  transition: transform 450ms ease;
}

.product-shot:hover img {
  transform: scale(1.025);
}

.product-shot:hover {
  border-color: var(--yellow-dark);
}

.product-shot span {
  min-height: 52px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink-soft);
  border-top: 1px solid #303840;
  font-size: 12px;
  font-weight: 700;
}

.security-section {
  margin-top: 0;
  color: var(--white);
  background: #181a20;
  border-top: 1px solid #2b3139;
}

.security-section::before {
  display: none;
}

.security-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(500px, 1.12fr);
  gap: 80px;
  align-items: center;
}

.security-copy > p {
  color: #99a3ab;
}

.security-copy .button {
  margin-top: 28px;
}

.security-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid #303840;
  border-left: 1px solid #303840;
}

.security-item {
  min-height: 218px;
  padding: 28px;
  position: relative;
  display: flex;
  gap: 16px;
  background: #1e2329;
  border-right: 1px solid #303840;
  border-bottom: 1px solid #303840;
}

.security-item::after {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 18px;
  height: 18px;
  border-top: 1px solid var(--yellow);
  border-left: 1px solid var(--yellow);
  opacity: 0;
  transition: opacity 220ms ease, width 320ms ease, height 320ms ease;
}

.security-item:hover::after {
  width: 34px;
  height: 34px;
  opacity: 1;
}

.security-item > span {
  position: absolute;
  right: 20px;
  bottom: 16px;
  color: #3e4851;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
}

.security-item > svg {
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
  color: var(--yellow);
}

.security-item h3 {
  margin: 1px 0 10px;
  font-size: 16px;
}

.security-item p {
  margin: 0;
  color: #89949d;
  font-size: 12px;
  line-height: 1.7;
}

.download-section {
  background: #0b0e11;
  border-bottom: 1px solid var(--line);
}

.download-section::before {
  display: none;
}

.download-heading {
  max-width: 900px;
  margin-bottom: 48px;
  display: grid;
  grid-template-columns: 88px 1fr;
  align-items: center;
  gap: 24px;
}

.download-heading > img {
  width: 88px;
  height: 88px;
  border-radius: 8px;
}

.download-heading .eyebrow {
  margin-bottom: 12px;
}

.download-heading > div > p:last-child {
  margin-top: 12px;
}

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

.download-card {
  min-width: 0;
  min-height: 370px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  background: #181a20;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.download-card.featured {
  color: var(--ink);
  background: var(--yellow);
  border-color: var(--yellow-dark);
}

.platform-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
}

.platform-icon svg {
  width: 23px;
  height: 23px;
}

.platform-tag {
  min-height: 20px;
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  color: #848e9c;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.featured .platform-tag {
  color: #5c4a00;
}

.download-card h3 {
  margin: 5px 0 9px;
  font-size: 23px;
}

.download-card p {
  margin: 0;
  min-height: 66px;
  color: #a7b0bd;
  font-size: 13px;
  line-height: 1.7;
}

.featured p {
  color: #604e09;
}

.version {
  margin: auto 0 16px;
  color: #848e9c;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 10px;
}

.featured .version {
  color: #675300;
}

.download-card .button {
  width: 100%;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(500px, 1.28fr);
  gap: 90px;
  align-items: start;
}

.faq-heading {
  position: sticky;
  top: calc(var(--header-height) + 28px);
}

.faq-heading > p {
  max-width: 390px;
}

.dark-link {
  color: var(--text);
  border-color: #8e969c;
}

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

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  min-height: 82px;
  padding: 18px 0;
  display: grid;
  grid-template-columns: 1fr 28px;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  list-style: none;
  font-size: 16px;
  font-weight: 750;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary svg {
  width: 20px;
  height: 20px;
  justify-self: end;
  transition: transform 180ms ease;
}

.faq-list summary:hover {
  color: var(--yellow);
}

.faq-list details[open] summary svg {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 760px;
  margin: -5px 0 24px;
  padding-right: 50px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.site-footer {
  padding: 70px var(--page-pad) 28px;
  color: var(--white);
  background: #181a20;
  border-top: 1px solid #2b3139;
}

.footer-main,
.risk-notice,
.footer-bottom {
  width: min(100%, var(--max-width));
  margin-right: auto;
  margin-left: auto;
}

.footer-main {
  padding-bottom: 52px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
}

.footer-brand p {
  max-width: 380px;
  margin: 18px 0 0;
  color: #79838c;
  font-size: 13px;
}

.footer-logo img {
  width: 44px;
  height: 44px;
}

.footer-links {
  display: flex;
  gap: 90px;
}

.footer-links > div {
  min-width: 110px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-links strong {
  margin-bottom: 6px;
  color: #f3f5f6;
  font-size: 12px;
}

.footer-links a {
  color: #7e8992;
  font-size: 12px;
}

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

.risk-notice {
  padding: 20px 0;
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  border-top: 1px solid #2a3138;
  border-bottom: 1px solid #2a3138;
}

.risk-notice svg {
  width: 18px;
  height: 18px;
  color: var(--yellow);
}

.risk-notice p {
  margin: 0;
  color: #68727b;
  font-size: 10px;
  line-height: 1.75;
}

.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  color: #626c74;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 10px;
}

.shot-dialog {
  width: min(92vw, 520px);
  max-height: 90vh;
  padding: 0;
  overflow: hidden;
  background: #11161b;
  border: 1px solid #3c454d;
  border-radius: 8px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.55);
}

.shot-dialog::backdrop {
  background: rgba(5, 7, 9, 0.88);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.shot-dialog img {
  width: 100%;
  max-height: 88vh;
  object-fit: contain;
}

.dialog-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  color: var(--white);
  background: rgba(11, 13, 16, 0.86);
  border-color: #5b656d;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

@media (max-width: 1080px) {
  :root {
    --page-pad: 24px;
  }

  .desktop-nav {
    gap: 18px;
  }

  .nav-download {
    display: none;
  }

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

  .hero-copy {
    width: min(570px, 60%);
  }

  .hero-product {
    right: -8px;
    transform: translateY(-48%) scale(0.9);
  }

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

  .operations-heading {
    gap: 42px;
  }

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

  .pulse-panel {
    border-right: 0;
  }

  .feed-panel {
    grid-column: 1 / -1;
    border-top: 1px solid #30383f;
  }

  .event-feed {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-left: 1px solid #30383f;
  }

  .feed-event {
    border-right: 1px solid #30383f;
  }

  .exchange-layout,
  .security-layout {
    gap: 48px;
  }

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

  .strategy-content {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .strategy-copy {
    padding: 40px 30px;
  }

  .workflow-list li {
    padding: 24px;
  }

  .security-layout {
    grid-template-columns: 0.82fr 1.18fr;
  }

  .faq-layout {
    gap: 55px;
  }
}

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

  .desktop-nav,
  .nav-download {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
  }

  .hero {
    min-height: calc(100svh - 50px);
  }

  .hero-inner {
    padding-top: 48px;
    align-items: flex-start;
  }

  .hero-copy {
    width: 70%;
  }

  .hero-block-one {
    right: 22%;
  }

  .hero-block-two {
    right: 34%;
  }

  .hero-block-three {
    right: 18%;
  }

  .chain-metrics {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .hero-lead {
    font-size: 25px;
  }

  .hero-description {
    font-size: 14px;
    line-height: 1.7;
  }

  .hero-product {
    top: 53%;
    right: -55px;
    transform: translateY(-45%) scale(0.72);
    transform-origin: center right;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-stats > div {
    min-height: 64px;
    padding: 11px 18px;
    border-bottom: 1px solid var(--line);
  }

  .hero-stats > div:nth-child(2) {
    border-right: 0;
  }

  .hero-stats > div:nth-child(n + 3) {
    border-bottom: 0;
  }

  .hero-stats strong {
    font-size: 21px;
  }

  .section {
    padding-top: 86px;
    padding-bottom: 86px;
  }

  .section-heading h2,
  .operations-heading h2,
  .exchange-copy h2,
  .workflow-heading h2,
  .usecases-section h2,
  .product-heading h2,
  .security-copy h2,
  .download-heading h2,
  .faq-heading h2 {
    font-size: 36px;
  }

  .exchange-layout,
  .security-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .operations-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 8px;
  }

  .operations-heading > p {
    max-width: 680px;
  }

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

  .pipeline-panel,
  .pulse-panel {
    border-right: 0;
    border-bottom: 1px solid #30383f;
  }

  .feed-panel {
    grid-column: auto;
    border-top: 0;
  }

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

  .exchange-band {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .exchange-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .strategy-content {
    grid-template-columns: 1fr;
  }

  .strategy-copy {
    border-right: 0;
    border-bottom: 1px solid #303840;
  }

  .workflow-list {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .security-layout {
    gap: 54px;
  }

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

  .download-card:last-of-type {
    grid-column: 1 / -1;
  }

  .faq-heading {
    position: static;
  }
}

@media (max-width: 620px) {
  :root {
    --page-pad: 18px;
  }

  .nav-shell {
    gap: 10px;
  }

  .brand span:not(.brand-pulse) {
    font-size: 16px;
  }

  .hero-blocks {
    opacity: 0.48;
  }

  .hero-block-one {
    top: 39%;
    right: 8%;
  }

  .hero-block-two,
  .hero-block-three {
    display: none;
  }

  .chain-pulse,
  .chain-pulse-inner {
    min-height: 294px;
  }

  .chain-pulse-inner {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .ledger-track span {
    width: 150px;
  }

  .chain-metrics > div {
    min-height: 66px;
    padding: 12px 14px;
  }

  .chain-metrics strong {
    margin-top: 7px;
    font-size: 12px;
  }

  .language-control {
    width: 44px;
    min-width: 44px;
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .language-control select {
    position: absolute;
    width: 44px;
    height: 40px;
    opacity: 0;
  }

  .language-control svg:last-child {
    display: none;
  }

  .hero {
    height: calc(100svh - 48px);
    min-height: 0;
  }

  .hero-inner {
    min-height: 0;
    margin: 0 auto;
    padding-top: 42px;
    padding-bottom: 135px;
    overflow: hidden;
  }

  .hero-copy {
    width: 100%;
  }

  .hero .eyebrow {
    max-width: 86%;
    margin-bottom: 14px;
    font-size: 10px;
  }

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

  .hero-lead {
    max-width: 86%;
    margin-top: 16px;
    font-size: 22px;
  }

  .hero-description {
    max-width: 86%;
    margin-top: 12px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    font-size: 12px;
  }

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

  .hero-actions .button {
    min-height: 44px;
    padding: 0 15px;
    font-size: 12px;
  }

  .hero-badges {
    display: none;
  }

  .hero-product {
    top: auto;
    right: 4px;
    bottom: 88px;
    width: 190px;
    height: 206px;
    overflow: hidden;
    opacity: 0.78;
    transform: none;
  }

  .phone-shell {
    top: 8px;
    right: 4px;
    width: 154px;
    height: 318px;
    padding: 5px;
    border-radius: 20px;
    transform: rotate(2deg);
  }

  .phone-shell::before {
    inset: 5px;
    border-radius: 14px;
  }

  .phone-speaker {
    top: 9px;
    width: 32px;
    height: 3px;
  }

  .hero-shot {
    border-radius: 15px;
  }

  .orbit-label {
    display: none;
  }

  .hero-stats {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 6;
    display: flex;
    overflow-x: auto;
    border-right: 0;
    border-left: 0;
    scrollbar-width: none;
  }

  .hero-stats::-webkit-scrollbar {
    display: none;
  }

  .hero-stats > div {
    min-width: 132px;
    min-height: 78px;
    padding: 10px 16px;
    flex: 0 0 auto;
    border-right: 1px solid var(--line) !important;
    border-bottom: 0 !important;
  }

  .hero-stats strong {
    min-width: 46px;
    font-size: 19px;
  }

  .hero-stats span {
    font-size: 10px;
  }

  .asset-rail {
    height: 48px;
  }

  .rail-set > span {
    min-width: 160px;
    padding: 0 20px;
    font-size: 9px;
  }

  .section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

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

  .section-heading h2,
  .operations-heading h2,
  .exchange-copy h2,
  .workflow-heading h2,
  .usecases-section h2,
  .product-heading h2,
  .security-copy h2,
  .download-heading h2,
  .faq-heading h2 {
    font-size: 29px;
    line-height: 1.18;
  }

  .section-heading > p:last-child,
  .product-heading > div > p:last-child,
  .download-heading > div > p:last-child,
  .faq-heading > p,
  .exchange-copy > p,
  .security-copy > p {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.75;
  }

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

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

  .feature-card h3 {
    margin-top: 26px;
  }

  .operations-heading {
    margin-bottom: 30px;
  }

  .console-topbar {
    min-height: 54px;
    padding: 0 16px;
  }

  .pipeline-panel,
  .pulse-panel,
  .feed-panel {
    padding: 20px 16px;
  }

  #operationsCanvas {
    height: 220px;
  }

  .ops-metrics > div {
    min-height: 70px;
    padding: 9px 7px;
  }

  .event-feed {
    grid-template-columns: 1fr;
  }

  .usecase-card {
    min-height: 300px;
    padding: 24px;
  }

  .usecase-card h3 {
    margin-top: 46px;
  }

  .usecase-tags {
    right: 24px;
    bottom: 22px;
    left: 24px;
  }

  .exchange-band {
    padding: 66px var(--page-pad);
  }

  .exchange-layout {
    gap: 40px;
  }

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

  .exchange-grid span {
    min-height: 70px;
  }

  .exchange-grid {
    box-shadow: 8px 10px 0 #181a20;
  }

  .strategy-tabs {
    min-height: auto;
    grid-template-columns: 1fr 1fr;
  }

  .strategy-tab {
    min-height: 58px;
    border-bottom: 1px solid #303840;
  }

  .strategy-tab:nth-child(2) {
    border-right: 0;
  }

  .strategy-tab:nth-child(n + 3) {
    border-bottom: 0;
  }

  .strategy-copy {
    padding: 30px 22px;
  }

  .strategy-copy h3 {
    font-size: 25px;
  }

  .strategy-facts > div {
    grid-template-columns: 90px 1fr;
  }

  .strategy-visual {
    padding: 24px 18px 18px;
  }

  #strategyChart {
    height: 250px;
  }

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

  .workflow-list li {
    min-height: 210px;
  }

  .workflow-list h3 {
    margin-top: 50px;
  }

  .product-heading {
    margin-bottom: 30px;
    gap: 24px;
  }

  .product-shot {
    width: min(74vw, 270px);
  }

  .product-shot img {
    height: 500px;
  }

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

  .security-item {
    min-height: 156px;
  }

  .download-heading {
    grid-template-columns: 64px 1fr;
    gap: 16px;
  }

  .download-heading > img {
    width: 64px;
    height: 64px;
  }

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

  .download-card:last-of-type {
    grid-column: auto;
  }

  .download-card {
    min-height: 350px;
    padding: 24px;
  }

  .faq-layout {
    gap: 40px;
  }

  .faq-list summary {
    min-height: 72px;
    font-size: 14px;
  }

  .faq-list details p {
    padding-right: 24px;
    font-size: 13px;
  }

  .site-footer {
    padding-top: 54px;
  }

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

  .footer-links {
    gap: 48px;
  }

  .footer-bottom {
    gap: 14px;
    flex-direction: column;
  }
}

@media (max-width: 620px) and (max-height: 720px) {
  .hero {
    min-height: 0;
  }

  .hero-inner {
    padding-top: 30px;
  }

  .hero-description {
    -webkit-line-clamp: 2;
  }

  .hero-product {
    display: none;
  }
}

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

  .hero-actions {
    gap: 8px;
  }

  .hero-actions .button {
    padding-right: 10px;
    padding-left: 10px;
    gap: 7px;
    font-size: 11px;
  }
}

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

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

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