:root {
  color-scheme: dark;
  --bg: #05070b;
  --bg-soft: #0b1118;
  --bg-panel: #101923;
  --text: #f6f8fb;
  --muted: #9ba8b8;
  --dim: #657284;
  --line: rgba(210, 225, 245, 0.14);
  --blue: #3c86ff;
  --cyan: #27d8ff;
  --emerald: #31d49c;
  --gold: #d7b46a;
  --platinum: #d9e2ee;
  --glass: rgba(255, 255, 255, 0.055);
  --glass-strong: rgba(255, 255, 255, 0.095);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
  --radius: 8px;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, transparent, black 18%, black 72%, transparent);
  opacity: 0.38;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

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

.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 7, 11, 0.76);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo-wrap {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.brand-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(39, 159, 255, 0.38));
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(60, 134, 255, 0.9), rgba(39, 216, 255, 0.34) 58%, rgba(215, 180, 106, 0.42));
  box-shadow: 0 16px 44px rgba(39, 216, 255, 0.18);
  color: white;
  font-size: 13px;
  font-weight: 800;
}

.brand-copy {
  display: grid;
  line-height: 1.2;
}

.brand-copy span:first-child {
  font-size: 15px;
  font-weight: 720;
}

.brand-copy span:last-child {
  margin-top: 3px;
  color: var(--dim);
  font-size: 11px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #c9d4e2;
  font-size: 14px;
}

.nav-links a {
  transition: color 160ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: white;
}

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

.lang-toggle,
.menu-toggle {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: #dfe8f4;
  cursor: pointer;
}

.lang-toggle {
  min-width: 72px;
  height: 38px;
  padding: 0 12px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 38px;
  padding: 9px 10px;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: currentColor;
}

.mobile-menu {
  display: none;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.hero::before {
  inset: 72px 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(39, 216, 255, 0.5), rgba(215, 180, 106, 0.28), transparent);
  box-shadow:
    0 140px 0 rgba(39, 216, 255, 0.08),
    0 280px 0 rgba(215, 180, 106, 0.06);
}

.hero::after {
  inset: auto -8% 0;
  height: 38%;
  background:
    repeating-linear-gradient(100deg, transparent 0 26px, rgba(39, 216, 255, 0.08) 27px, transparent 28px),
    linear-gradient(90deg, transparent, rgba(39, 216, 255, 0.18), rgba(215, 180, 106, 0.12), transparent);
  clip-path: polygon(0 72%, 100% 22%, 100% 100%, 0 100%);
  opacity: 0.42;
}

.hero {
  position: relative;
  min-height: 88svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 140px 0 86px;
  isolation: isolate;
}

.hero-canvas,
.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-canvas {
  z-index: 2;
  width: 100%;
  height: 100%;
  opacity: 0.66;
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-media {
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 7, 11, 0.98) 0%, rgba(5, 7, 11, 0.84) 36%, rgba(5, 7, 11, 0.42) 70%, rgba(5, 7, 11, 0.72) 100%),
    linear-gradient(180deg, rgba(8, 15, 25, 0.42), rgba(5, 7, 11, 0.9));
}

.hero-content {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 58px;
  align-items: center;
  animation: fadeLift 900ms ease both;
}

.hero-copy {
  position: relative;
  min-width: 0;
  padding-left: 24px;
}

.hero-copy::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(180deg, var(--gold), rgba(39, 216, 255, 0.88), rgba(49, 212, 156, 0.38), transparent);
}

.hero-copy::after {
  content: "";
  position: absolute;
  left: -4px;
  top: 8px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow:
    0 138px 0 rgba(39, 216, 255, 0.9),
    0 274px 0 rgba(49, 212, 156, 0.72),
    0 0 18px rgba(215, 180, 106, 0.52);
}

.eyebrow {
  position: relative;
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 720;
  text-transform: uppercase;
}

.section-heading .eyebrow::after {
  content: "";
  display: inline-block;
  width: 72px;
  height: 1px;
  margin-left: 12px;
  vertical-align: middle;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: 78px;
  line-height: 0.96;
  font-weight: 850;
}

.hero-lede {
  max-width: 690px;
  margin: 24px 0 0;
  color: #d9e2ee;
  font-size: 22px;
  line-height: 1.45;
}

.hero-tagline {
  max-width: 820px;
  margin: 24px 0 0;
  color: #f6f8fb;
  font-size: 26px;
  font-weight: 760;
  line-height: 1.25;
}

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

.hero-console {
  position: relative;
  min-height: 520px;
  border: 1px solid rgba(123, 180, 255, 0.22);
  border-radius: 8px;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(12, 21, 32, 0.8), rgba(5, 9, 15, 0.72)),
    linear-gradient(135deg, rgba(60, 134, 255, 0.18), rgba(49, 212, 156, 0.08));
  box-shadow: 0 34px 110px rgba(17, 112, 255, 0.16);
  overflow: hidden;
  transform: translateZ(0);
}

.hero-console::before,
.hero-console::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-console::before {
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, black, transparent 84%);
  opacity: 0.5;
}

.hero-console::after {
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent 0 35%, rgba(39, 216, 255, 0.32), transparent 58% 100%);
  transform: translateX(-110%);
  animation: panelScan 7.5s ease-in-out infinite;
}

.console-topline,
.console-orbit,
.console-rails {
  position: relative;
  z-index: 1;
}

.console-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #cbd8e8;
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
}

.console-topline strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #7ef0c6;
  font-size: 12px;
}

.console-topline strong::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 14px currentColor;
}

.console-orbit {
  --hero-orbit-radius: 128px;
  width: min(100%, 340px);
  aspect-ratio: 1;
  margin: 46px auto 36px;
  border: 1px solid rgba(39, 216, 255, 0.18);
  border-radius: 50%;
  background:
    conic-gradient(from 160deg, rgba(39, 216, 255, 0.32), rgba(49, 212, 156, 0.1), rgba(215, 180, 106, 0.24), rgba(39, 216, 255, 0.32));
  box-shadow: inset 0 0 58px rgba(39, 216, 255, 0.08);
  animation: orbitAura 18s linear infinite;
}

.console-orbit::before,
.console-orbit::after {
  content: "";
  position: absolute;
  inset: 13%;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
}

.console-orbit::after {
  inset: 28%;
  border-color: rgba(215, 180, 106, 0.22);
  animation: orbitSpin 18s linear infinite reverse;
}

.console-orbit::before {
  animation: orbitSpin 24s linear infinite;
}

.orbit-center,
.orbit-node {
  position: absolute;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-weight: 820;
}

.orbit-center {
  inset: 35%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(5, 9, 15, 0.86);
  color: white;
  font-size: 28px;
  box-shadow: 0 0 52px rgba(39, 216, 255, 0.22);
}

.orbit-node {
  width: 62px;
  height: 62px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(8, 16, 25, 0.88);
  color: #f7fbff;
  font-size: 14px;
  top: 50%;
  left: 50%;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28), 0 0 22px rgba(39, 216, 255, 0.14);
}

.node-ai {
  animation: heroOrbitAi 8.5s linear infinite;
}

.node-rwa {
  animation: heroOrbitRwa 8.5s linear infinite;
}

.node-l2 {
  animation: heroOrbitL2 8.5s linear infinite;
}

.console-rails {
  display: grid;
  gap: 10px;
}

.console-rails div {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.055);
}

.console-rails span {
  color: var(--muted);
  font-size: 13px;
}

.console-rails strong {
  color: white;
  font-size: 14px;
}

.metric-strip {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(90deg, rgba(39, 216, 255, 0.08), transparent 36%, rgba(215, 180, 106, 0.06)),
    linear-gradient(180deg, #081019, #05070b);
  overflow: hidden;
}

.metric-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 0 44%, rgba(39, 216, 255, 0.18), transparent 56% 100%);
  transform: translateX(-100%);
  animation: panelScan 9s ease-in-out infinite;
  pointer-events: none;
}

.metric-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.metric-grid div {
  position: relative;
  min-height: 142px;
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018)),
    linear-gradient(180deg, rgba(39, 216, 255, 0.055), transparent);
  overflow: hidden;
}

.metric-grid div::before {
  content: "";
  position: absolute;
  inset: auto 24px 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--emerald));
  transform: scaleX(0.38);
  transform-origin: left;
  opacity: 0.72;
}

.metric-grid div::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.13), transparent);
  transform: translateX(-120%);
  animation: sheen 6s ease-in-out infinite;
}

.metric-grid div:nth-child(2)::after {
  animation-delay: 0.45s;
}

.metric-grid div:nth-child(3)::after {
  animation-delay: 0.9s;
}

.metric-grid div:nth-child(4)::after {
  animation-delay: 1.35s;
}

.metric-grid strong,
.metric-grid span {
  display: block;
}

.metric-grid strong {
  position: relative;
  z-index: 1;
  font-size: 34px;
  line-height: 1;
  color: white;
}

.metric-grid span {
  position: relative;
  z-index: 1;
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 13px 18px;
  font-weight: 720;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

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

.button.primary {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(135deg, #2f74ff, #22c2e8 58%, #35c58f);
  color: white;
  box-shadow: 0 18px 54px rgba(47, 116, 255, 0.28);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.07);
  color: #eef4fb;
}

.button.secondary.light {
  background: rgba(255, 255, 255, 0.08);
}

.signal-band {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, #081019, #06090f);
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.signal-grid div {
  min-height: 144px;
  padding: 26px;
  background: #080e15;
}

.signal-grid strong,
.signal-grid span {
  display: block;
}

.signal-grid strong {
  margin-bottom: 12px;
  color: white;
  font-size: 18px;
}

.signal-grid span {
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: 104px 0;
  background: var(--bg);
}

.section.muted {
  background: var(--bg-soft);
}

.two-column {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 72px;
  align-items: start;
}

h2 {
  margin: 0;
  font-size: 46px;
  line-height: 1.08;
  font-weight: 820;
}

h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
}

.section-copy p,
.large-copy {
  margin: 0;
  color: #c6d1df;
  font-size: 18px;
}

.section-copy p + p {
  margin-top: 18px;
}

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

.section-heading.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
}

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

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

.pillar-card,
.feature-card,
.compliance-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
  box-shadow: var(--shadow);
}

.pillar-card {
  position: relative;
  min-height: 354px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-top: 3px solid var(--blue);
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.pillar-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.32;
  pointer-events: none;
}

.pillar-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.25);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.032));
}

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

.pillar-card.ai-card {
  background:
    linear-gradient(180deg, rgba(60, 134, 255, 0.14), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.04);
}

.pillar-card.accent-gold {
  border-top-color: var(--gold);
}

.pillar-card.accent-cyan {
  border-top-color: var(--cyan);
}

.pillar-index {
  color: var(--dim);
  font-size: 13px;
  font-weight: 760;
}

.pillar-card h3 {
  margin-top: 34px;
}

.pillar-card p,
.feature-card p,
.compliance-card p {
  color: var(--muted);
}

.pillar-card a {
  color: #dbe9ff;
  font-weight: 720;
}

.ecosystem-flow {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 80px 1fr 80px 1fr;
  gap: 0;
  align-items: center;
  margin-top: 26px;
  padding: 20px;
  border: 1px solid rgba(123, 180, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(60, 134, 255, 0.08), rgba(49, 212, 156, 0.04), rgba(215, 180, 106, 0.08)),
    rgba(255, 255, 255, 0.028);
  overflow: hidden;
}

.ecosystem-flow::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 10%, rgba(255, 255, 255, 0.08), transparent 42%);
  transform: translateX(-110%);
  animation: panelScan 8.5s ease-in-out infinite;
  pointer-events: none;
}

.flow-node {
  position: relative;
  z-index: 1;
  min-height: 118px;
  display: grid;
  align-content: center;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  padding: 20px;
  background: rgba(7, 12, 18, 0.72);
}

.flow-node span,
.flow-node strong {
  display: block;
}

.flow-node span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
}

.flow-node strong {
  margin-top: 8px;
  color: white;
  font-size: 22px;
}

.core-node {
  border-color: rgba(39, 216, 255, 0.28);
  background:
    linear-gradient(135deg, rgba(60, 134, 255, 0.16), rgba(49, 212, 156, 0.08)),
    rgba(7, 12, 18, 0.8);
}

.flow-link {
  position: relative;
  z-index: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(39, 216, 255, 0.2), rgba(39, 216, 255, 0.85), rgba(215, 180, 106, 0.5));
}

.flow-link::after {
  content: "";
  position: absolute;
  top: -4px;
  right: -1px;
  width: 9px;
  height: 9px;
  border-top: 1px solid rgba(39, 216, 255, 0.9);
  border-right: 1px solid rgba(39, 216, 255, 0.9);
  transform: rotate(45deg);
}

.split-section {
  background:
    linear-gradient(180deg, rgba(49, 212, 156, 0.08), rgba(5, 7, 11, 0) 42%),
    var(--bg);
}

.split-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.split-layout .large-copy {
  margin: 20px 0 28px;
}

.ai-proof {
  display: grid;
  gap: 10px;
  margin: 0 0 18px;
}

.ai-proof div {
  border-left: 2px solid rgba(39, 216, 255, 0.55);
  padding: 8px 0 8px 14px;
}

.ai-proof strong,
.ai-proof span {
  display: block;
}

.ai-proof strong {
  color: white;
  font-size: 14px;
}

.ai-proof span {
  color: var(--muted);
  font-size: 14px;
}

.ai-pipeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin: 0 0 26px;
}

.ai-pipeline::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, rgba(60, 134, 255, 0.45), rgba(39, 216, 255, 0.88), rgba(49, 212, 156, 0.58));
}

.ai-pipeline span {
  position: relative;
  z-index: 1;
  min-height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(39, 216, 255, 0.18);
  border-radius: 999px;
  background: rgba(5, 9, 15, 0.9);
  color: #dceaff;
  font-size: 12px;
  font-weight: 760;
}

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

.module-grid div {
  position: relative;
  min-height: 76px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.055);
  color: #e6edf5;
  font-weight: 720;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.module-grid div::before {
  content: "";
  position: absolute;
  inset: auto 18px 12px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  opacity: 0.55;
}

.module-grid div:hover {
  transform: translateY(-3px);
  border-color: rgba(39, 216, 255, 0.32);
  background:
    linear-gradient(135deg, rgba(60, 134, 255, 0.16), rgba(39, 216, 255, 0.045)),
    rgba(255, 255, 255, 0.07);
}

.strong-modules {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.strong-modules div {
  min-height: 92px;
  background:
    linear-gradient(135deg, rgba(60, 134, 255, 0.12), rgba(39, 216, 255, 0.035)),
    rgba(255, 255, 255, 0.055);
}

.strong-modules div:nth-child(3n + 2) {
  background:
    linear-gradient(135deg, rgba(49, 212, 156, 0.11), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.055);
}

.strong-modules div:nth-child(3n) {
  background:
    linear-gradient(135deg, rgba(215, 180, 106, 0.13), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.055);
}

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

.market-card {
  position: relative;
  min-height: 270px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background:
    radial-gradient(circle at top right, rgba(49, 212, 156, 0.16), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.market-card::before {
  content: "";
  position: absolute;
  inset: auto 28px 28px;
  height: 34px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(135deg, transparent 49%, rgba(49, 212, 156, 0.72) 50% 54%, transparent 55%),
    linear-gradient(90deg, rgba(49, 212, 156, 0.08), rgba(49, 212, 156, 0.24));
  clip-path: polygon(0 100%, 18% 74%, 34% 80%, 54% 42%, 72% 52%, 100% 0, 100% 100%);
  opacity: 0.72;
}

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

.market-card span,
.market-card strong,
.market-card small {
  display: block;
}

.market-card span {
  color: var(--platinum);
  font-weight: 760;
}

.market-card strong {
  margin-top: 24px;
  color: white;
  font-size: 34px;
  line-height: 1.1;
}

.market-card p {
  margin: 14px 0 0;
  color: var(--emerald);
  font-weight: 680;
}

.market-card small {
  margin-top: 24px;
  color: var(--dim);
  font-size: 12px;
}

.asset-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-top: 22px;
}

.asset-grid div {
  position: relative;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.045);
  color: #d7e2ef;
  font-size: 14px;
  font-weight: 680;
  text-align: center;
  overflow: hidden;
}

.asset-grid div::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 2px;
  background: linear-gradient(180deg, var(--blue), var(--cyan), var(--emerald));
}

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

.feature-card {
  min-height: 250px;
  padding: 28px;
}

.feature-card h3 {
  margin-bottom: 20px;
}

.network-section {
  position: relative;
  background:
    linear-gradient(90deg, rgba(60, 134, 255, 0.13), rgba(5, 7, 11, 0) 52%),
    linear-gradient(180deg, rgba(39, 216, 255, 0.045), transparent 28%),
    #06090f;
  overflow: hidden;
}

.network-section::before {
  content: "";
  position: absolute;
  inset: 80px -12% auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(39, 216, 255, 0.4), rgba(215, 180, 106, 0.28), transparent);
  box-shadow: 0 42px 0 rgba(39, 216, 255, 0.08), 0 84px 0 rgba(215, 180, 106, 0.07);
  pointer-events: none;
}

.network-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 520px;
  gap: 44px;
  align-items: stretch;
  margin-bottom: 22px;
}

.network-core {
  min-height: 300px;
  display: grid;
  grid-template-columns: 1fr;
  align-content: center;
  gap: 20px;
  border: 1px solid rgba(39, 216, 255, 0.28);
  border-radius: 8px;
  padding: 26px;
  background:
    linear-gradient(135deg, rgba(60, 134, 255, 0.16), rgba(49, 212, 156, 0.05)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.024));
  box-shadow: 0 28px 90px rgba(39, 216, 255, 0.08);
  overflow: hidden;
}

.throughput-orbit {
  position: relative;
  --network-orbit-radius: 136px;
  width: min(100%, 360px);
  aspect-ratio: 1;
  margin: 0 auto;
  display: grid;
  place-items: center;
}

.throughput-orbit::before {
  content: "";
  position: absolute;
  inset: 7%;
  border-radius: 50%;
  background:
    conic-gradient(from 220deg, rgba(39, 216, 255, 0.8), rgba(49, 212, 156, 0.2), rgba(215, 180, 106, 0.7), rgba(60, 134, 255, 0.62), rgba(39, 216, 255, 0.8));
  opacity: 0.22;
  animation: orbitSpin 16s linear infinite;
}

.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.ring-one {
  inset: 4%;
  animation: orbitSpin 26s linear infinite;
}

.ring-two {
  inset: 20%;
  border-color: rgba(215, 180, 106, 0.22);
  animation: orbitSpin 18s linear infinite reverse;
}

.orbit-chip {
  position: absolute;
  display: grid;
  place-items: center;
  min-width: 54px;
  min-height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 4px 10px;
  background: rgba(5, 9, 15, 0.86);
  color: #dfeaff;
  font-size: 11px;
  font-weight: 780;
  top: 50%;
  left: 50%;
  z-index: 2;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.26), 0 0 18px rgba(39, 216, 255, 0.12);
}

.chip-a {
  animation: networkOrbitHpos 7.5s linear infinite;
}

.chip-b {
  animation: networkOrbitRwa 7.5s linear infinite;
}

.chip-c {
  animation: networkOrbitZk 7.5s linear infinite;
}

.throughput-orbit strong {
  position: relative;
  z-index: 1;
  width: 58%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(39, 216, 255, 0.24);
  border-radius: 50%;
  background: rgba(5, 9, 15, 0.88);
  color: white;
  font-size: 46px;
  line-height: 0.95;
  text-align: center;
  box-shadow: inset 0 0 44px rgba(39, 216, 255, 0.1), 0 0 58px rgba(39, 216, 255, 0.12);
}

.throughput-copy {
  position: relative;
  z-index: 1;
}

.throughput-copy span,
.throughput-copy strong {
  display: block;
}

.throughput-copy span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 760;
  text-transform: uppercase;
}

.throughput-copy p {
  margin: 10px 0 0;
  color: var(--muted);
}

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

.network-feature-grid article {
  position: relative;
  min-height: 250px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.045);
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.network-feature-grid article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.network-feature-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(39, 216, 255, 0.28);
  background: rgba(255, 255, 255, 0.066);
}

.network-feature-grid article span {
  color: var(--dim);
  font-size: 13px;
  font-weight: 760;
}

.network-feature-grid h3 {
  margin: 28px 0 16px;
  font-size: 20px;
}

.network-feature-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.network-layout {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 56px;
  align-items: center;
}

.network-layout .large-copy {
  margin-top: 22px;
}

.network-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}

.network-specs div {
  min-height: 132px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.network-specs div:nth-child(2n) {
  border-right: 0;
}

.network-specs div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.network-specs span,
.network-specs strong {
  display: block;
}

.network-specs span {
  color: var(--dim);
  font-size: 13px;
}

.network-specs strong {
  margin-top: 14px;
  color: white;
  font-size: 20px;
  line-height: 1.2;
}

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

.license-board {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 28px;
  border: 1px solid rgba(215, 180, 106, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(49, 212, 156, 0.09), transparent 34%),
    linear-gradient(315deg, rgba(215, 180, 106, 0.11), transparent 40%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  overflow: hidden;
}

.license-board::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 19%, rgba(255, 255, 255, 0.055) 20%, transparent 21% 49%, rgba(255, 255, 255, 0.045) 50%, transparent 51% 79%, rgba(255, 255, 255, 0.055) 80%, transparent 81%),
    linear-gradient(180deg, transparent 0 49%, rgba(255, 255, 255, 0.04) 50%, transparent 51%);
  opacity: 0.55;
  pointer-events: none;
}

.license-board::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, rgba(49, 212, 156, 0.14), rgba(215, 180, 106, 0.42), rgba(60, 134, 255, 0.16));
  pointer-events: none;
}

.license-card {
  position: relative;
  z-index: 1;
  min-height: 240px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: rgba(7, 12, 18, 0.86);
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.license-card::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 44px;
  height: 44px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  opacity: 0.68;
}

.license-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.license-card.held::before {
  background: linear-gradient(90deg, var(--emerald), var(--cyan));
}

.license-card.submitted::before {
  background: linear-gradient(90deg, var(--gold), var(--blue));
}

.license-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(11, 18, 26, 0.96);
}

.license-card .status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 780;
}

.license-card .status::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 0 16px currentColor;
  animation: statusPulse 1.9s ease-in-out infinite;
}

.license-card.held .status {
  background: rgba(49, 212, 156, 0.16);
  color: #7ef0c6;
}

.license-card.submitted .status {
  background: rgba(215, 180, 106, 0.16);
  color: #f0d38a;
}

.license-card h3 {
  margin: 28px 0 16px;
  font-size: 21px;
}

.license-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.privacy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 20px;
}

.privacy-grid div {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.045);
}

.privacy-grid strong,
.privacy-grid span {
  display: block;
}

.privacy-grid strong {
  color: var(--blue);
}

.privacy-grid span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.compliance-card {
  min-height: 278px;
  padding: 28px;
}

.compliance-card span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 760;
}

.compliance-card h3 {
  margin: 18px 0;
}

.legal-note {
  margin: 28px 0 0;
  padding: 18px 20px;
  border: 1px solid rgba(215, 180, 106, 0.28);
  border-radius: 8px;
  background: rgba(215, 180, 106, 0.08);
  color: #cfdae8;
  font-size: 14px;
}

.momentum-section {
  background: #05070b;
}

.roadmap-section {
  background:
    linear-gradient(180deg, rgba(49, 212, 156, 0.07), rgba(5, 7, 11, 0) 34%),
    #05070b;
}

.roadmap {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 22px;
}

.roadmap::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 24px;
  height: 1px;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--emerald), var(--gold));
  box-shadow: 0 0 22px rgba(39, 216, 255, 0.18);
}

.roadmap article {
  position: relative;
  min-height: 244px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.045);
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.roadmap article::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--emerald));
}

.roadmap article::after {
  content: "";
  position: absolute;
  top: 17px;
  left: 28px;
  width: 14px;
  height: 14px;
  border: 2px solid var(--cyan);
  border-radius: 50%;
  background: #05070b;
  box-shadow: 0 0 20px rgba(39, 216, 255, 0.42);
}

.roadmap article:hover {
  transform: translateY(-4px);
  border-color: rgba(39, 216, 255, 0.25);
  background: rgba(255, 255, 255, 0.064);
}

.roadmap article span {
  display: inline-block;
  margin-top: 18px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 760;
}

.roadmap article h3 {
  margin: 32px 0 16px;
  font-size: 20px;
}

.roadmap article p {
  margin: 0;
  color: var(--muted);
}

.momentum-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--line);
}

.momentum-grid div {
  position: relative;
  min-height: 170px;
  padding: 26px;
  background: #080d13;
  overflow: hidden;
}

.momentum-grid div::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, var(--blue), var(--cyan), var(--emerald));
}

.momentum-grid strong,
.momentum-grid span {
  display: block;
}

.momentum-grid strong {
  margin-bottom: 12px;
  color: white;
  font-size: 18px;
}

.momentum-grid span {
  color: var(--muted);
  font-size: 14px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #070b11;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.8fr;
  gap: 56px;
  padding: 64px 0 42px;
}

.footer-brand {
  margin-bottom: 18px;
}

.site-footer p {
  max-width: 390px;
  margin: 18px 0 0;
  color: var(--muted);
}

.site-footer h2 {
  margin: 0 0 18px;
  font-size: 17px;
}

.footer-links {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a,
.footer-bottom a {
  color: var(--muted);
  transition: color 160ms ease;
}

.footer-links a:hover,
.footer-bottom a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0 30px;
  border-top: 1px solid var(--line);
  color: var(--dim);
  font-size: 14px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  gap: 18px;
}

.legal-page {
  padding: 138px 0 80px;
}

.legal-page article {
  max-width: 850px;
}

.legal-page h1 {
  margin: 0 0 28px;
  font-size: 52px;
  line-height: 1.05;
}

.legal-page h2 {
  margin-top: 34px;
  font-size: 24px;
}

.legal-page p,
.legal-page li {
  color: var(--muted);
}

.legal-page ul {
  padding-left: 20px;
}

.js-enabled .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 720ms ease, transform 720ms ease;
}

.js-enabled .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

@keyframes heroDrift {
  from {
    transform: scale(1.01) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.055) translate3d(-1.2%, -0.6%, 0);
  }
}

@keyframes sheen {
  0%,
  62% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(120%);
  }
}

@keyframes panelScan {
  0%,
  58% {
    transform: translateX(-115%);
  }
  100% {
    transform: translateX(115%);
  }
}

@keyframes orbitSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes orbitAura {
  0% {
    filter: hue-rotate(0deg) brightness(1);
  }
  50% {
    filter: hue-rotate(18deg) brightness(1.12);
  }
  100% {
    filter: hue-rotate(0deg) brightness(1);
  }
}

@keyframes heroOrbitAi {
  from {
    transform: translate(-50%, -50%) rotate(-90deg) translateX(var(--hero-orbit-radius)) rotate(90deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(270deg) translateX(var(--hero-orbit-radius)) rotate(-270deg);
  }
}

@keyframes heroOrbitRwa {
  from {
    transform: translate(-50%, -50%) rotate(30deg) translateX(var(--hero-orbit-radius)) rotate(-30deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(390deg) translateX(var(--hero-orbit-radius)) rotate(-390deg);
  }
}

@keyframes heroOrbitL2 {
  from {
    transform: translate(-50%, -50%) rotate(150deg) translateX(var(--hero-orbit-radius)) rotate(-150deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(510deg) translateX(var(--hero-orbit-radius)) rotate(-510deg);
  }
}

@keyframes networkOrbitHpos {
  from {
    transform: translate(-50%, -50%) rotate(-122deg) translateX(var(--network-orbit-radius)) rotate(122deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(238deg) translateX(var(--network-orbit-radius)) rotate(-238deg);
  }
}

@keyframes networkOrbitRwa {
  from {
    transform: translate(-50%, -50%) rotate(8deg) translateX(var(--network-orbit-radius)) rotate(-8deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(368deg) translateX(var(--network-orbit-radius)) rotate(-368deg);
  }
}

@keyframes networkOrbitZk {
  from {
    transform: translate(-50%, -50%) rotate(136deg) translateX(var(--network-orbit-radius)) rotate(-136deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(496deg) translateX(var(--network-orbit-radius)) rotate(-496deg);
  }
}

@keyframes statusPulse {
  0%,
  100% {
    opacity: 0.62;
    transform: scale(0.92);
  }
  50% {
    opacity: 1;
    transform: scale(1.12);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-menu {
    position: fixed;
    inset: 72px 0 auto;
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 16px;
    border-bottom: 1px solid var(--line);
    background: rgba(5, 7, 11, 0.96);
  }

  body.menu-open .mobile-menu {
    display: grid;
  }

  .mobile-menu a {
    min-height: 48px;
    display: flex;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 0 14px;
    background: rgba(255, 255, 255, 0.05);
    color: #d8e2ef;
  }

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

  .hero-lede {
    font-size: 20px;
  }

  .two-column,
  .split-layout,
  .network-layout,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

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

  .hero-console {
    min-height: 420px;
    max-width: 560px;
  }

  .pillar-grid,
  .feature-grid,
  .compliance-grid,
  .market-grid,
  .network-hero,
  .network-feature-grid,
  .license-board,
  .privacy-grid,
  .roadmap,
  .momentum-grid,
  .metric-grid,
  .signal-grid {
    grid-template-columns: 1fr;
  }

  .ecosystem-flow {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .flow-link {
    width: 1px;
    height: 38px;
    justify-self: center;
    background: linear-gradient(180deg, rgba(39, 216, 255, 0.2), rgba(39, 216, 255, 0.85), rgba(215, 180, 106, 0.5));
  }

  .flow-link::after {
    top: auto;
    right: -4px;
    bottom: -1px;
    transform: rotate(135deg);
  }

  .network-hero {
    grid-template-columns: 1fr;
  }

  .license-board::after,
  .roadmap::before {
    display: none;
  }

  .signal-grid {
    gap: 1px;
  }
}

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

  .brand-copy span:first-child {
    font-size: 13px;
  }

  .brand-copy span:last-child {
    display: none;
  }

  .lang-toggle {
    min-width: 60px;
  }

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

  .hero-canvas {
    opacity: 0.42;
  }

  .hero-console {
    min-height: 360px;
    padding: 16px;
  }

  .console-orbit {
    --hero-orbit-radius: 106px;
    width: min(100%, 280px);
    margin: 28px auto 24px;
  }

  .orbit-node {
    width: 52px;
    height: 52px;
  }

  .hero-media img {
    object-position: 66% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(5, 7, 11, 0.95), rgba(5, 7, 11, 0.72)),
      linear-gradient(180deg, rgba(5, 7, 11, 0.35), rgba(5, 7, 11, 0.92));
  }

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

  .hero-tagline {
    font-size: 20px;
  }

  .hero-lede {
    font-size: 18px;
  }

  .hero-actions,
  .footer-bottom,
  .footer-bottom div {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 72px 0;
  }

  h2 {
    font-size: 34px;
  }

  .section-copy p,
  .large-copy {
    font-size: 16px;
  }

  .module-grid,
  .strong-modules,
  .asset-grid,
  .ai-pipeline,
  .network-specs {
    grid-template-columns: 1fr;
  }

  .ai-pipeline::before {
    top: 8%;
    bottom: 8%;
    left: 50%;
    right: auto;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, rgba(60, 134, 255, 0.45), rgba(39, 216, 255, 0.88), rgba(49, 212, 156, 0.58));
  }

  .metric-grid div,
  .signal-grid div {
    min-height: 118px;
  }

  .throughput-orbit strong {
    font-size: 34px;
  }

  .throughput-orbit {
    --network-orbit-radius: 108px;
  }

  .network-specs div,
  .network-specs div:nth-child(2n),
  .network-specs div:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .network-specs div:last-child {
    border-bottom: 0;
  }

  .legal-page h1 {
    font-size: 40px;
  }
}
