.landing-page {
  --landing-bg: #ffffff;
  --landing-bg-soft: #f6f8fb;
  --landing-surface: #ffffff;
  --landing-surface-2: #f8fafc;
  --landing-border: #dfe4ec;
  --landing-border-strong: #cbd3df;
  --landing-text: #0b1220;
  --landing-muted: #5f6977;
  --landing-accent: #3155e7;
  --landing-accent-hover: #2447cd;
  --landing-accent-soft: #edf1ff;
  --landing-success: #169b67;
  --landing-success-soft: #eaf8f1;
  --landing-shadow: 0 24px 70px rgb(24 39 75 / 0.11);
  background: var(--landing-bg);
  color: var(--landing-text);
  color-scheme: light;
  font-family: var(--font-body);
}

.landing-page .page-shell {
  background: var(--landing-bg);
}

.landing-page .container {
  width: min(1240px, calc(100% - 48px));
}

.announcement-bar {
  position: relative;
  z-index: 110;
  display: grid;
  place-items: center;
  min-height: 38px;
  background: #254bd8;
  color: #ffffff;
  padding: 7px 20px;
}

.announcement-bar a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: inherit;
  font-size: 13px;
  font-weight: 600;
}

.announcement-bar span {
  border: 1px solid rgb(255 255 255 / 0.42);
  border-radius: 999px;
  padding: 2px 7px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.announcement-bar i {
  font-size: 15px;
  transition: transform var(--fast);
}

.announcement-bar a:hover i {
  transform: translateX(3px);
}

.landing-page .site-header {
  height: 72px;
  border-bottom: 1px solid #e8ebf0;
  background: rgb(255 255 255 / 0.92);
  color: var(--landing-text);
  backdrop-filter: blur(18px) saturate(140%);
}

.landing-page .site-header.is-scrolled {
  height: 64px;
  border-color: var(--landing-border);
  background: rgb(255 255 255 / 0.97);
  box-shadow: 0 8px 24px rgb(21 33 56 / 0.06);
}

.landing-page .brand {
  color: var(--landing-text);
  font-size: 17px;
  font-weight: 750;
}

.landing-page .brand-mark {
  width: 32px;
  height: 32px;
  border: 1px solid #3155e7;
  border-radius: 7px;
  background: #3155e7;
  color: #ffffff;
  box-shadow: none;
}

.landing-page .nav-link,
.landing-page .nav-trigger {
  border-radius: 6px;
  color: #343e4d;
  font-size: 14px;
  font-weight: 500;
}

.landing-page .nav-link:hover,
.landing-page .nav-trigger:hover {
  background: #f1f4f8;
  color: #0b1220;
}

.landing-page .mega-menu {
  top: var(--menu-top, 72px);
  border-color: var(--landing-border);
  border-radius: 8px;
  background: rgb(255 255 255 / 0.98);
  box-shadow: 0 20px 50px rgb(21 33 56 / 0.14);
}

.landing-page .mega-menu.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 1240px) {
  .landing-page .mobile-nav {
    inset: var(--mobile-top, 80px) 14px auto;
    z-index: 99;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px;
    visibility: hidden;
    transform: translateY(-8px);
    border: 1px solid var(--landing-border);
    border-radius: 8px;
    background: rgb(255 255 255 / 0.99);
    padding: 10px;
    box-shadow: 0 20px 48px rgb(21 33 56 / 0.14);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--fast), transform var(--fast), visibility var(--fast);
  }

  .landing-page .mobile-nav.is-open {
    visibility: visible;
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .landing-page .mobile-nav-actions {
    grid-column: 1 / -1;
  }
}

.landing-page .mega-title {
  color: #3155e7;
}

.landing-page .mega-item {
  border-radius: 7px;
}

.landing-page .mega-item:hover {
  background: #f4f6fa;
}

.landing-page .mega-item strong {
  color: #151d2b;
}

.landing-page .mega-item span,
.landing-page .mega-item span span {
  color: #697383;
}

.landing-page .mini-icon {
  border-color: #dfe4ec;
  border-radius: 7px;
  background: #f5f7fb;
  color: #3155e7;
}

.landing-page .btn {
  min-height: 44px;
  border-radius: 7px;
  padding: 11px 17px;
  font-size: 14px;
  font-weight: 650;
  box-shadow: none;
}

.landing-page .btn-primary,
.landing-page .btn-accent {
  border: 1px solid var(--landing-accent);
  background: var(--landing-accent);
  color: #ffffff;
  box-shadow: 0 8px 18px rgb(49 85 231 / 0.18);
}

.landing-page .btn-primary:hover,
.landing-page .btn-accent:hover {
  border-color: var(--landing-accent-hover);
  background: var(--landing-accent-hover);
  color: #ffffff;
  transform: translateY(-1px);
}

.landing-page .btn-secondary,
.landing-page .btn-ghost {
  border: 1px solid var(--landing-border-strong);
  background: #ffffff;
  color: #172033;
}

.landing-page .btn-secondary:hover,
.landing-page .btn-ghost:hover {
  border-color: #aeb8c7;
  background: #f7f9fc;
  color: #0b1220;
}

.landing-page .icon-btn {
  border-color: var(--landing-border);
  border-radius: 7px;
  background: #ffffff;
  color: #172033;
}

.landing-page .mobile-nav {
  display: none;
}

.landing-page .status {
  border-color: #bde7d2;
  background: var(--landing-success-soft);
  color: #14754f;
}

.landing-page .status::before {
  background: var(--landing-success);
  box-shadow: 0 0 0 3px rgb(22 155 103 / 0.1);
}

.landing-page .status.warning {
  border-color: #f1d8a9;
  background: #fff8e8;
  color: #8b5a10;
}

.landing-page .status.warning::before {
  background: #d9972d;
}

.landing-page .field,
.landing-page .select-field,
.landing-page .textarea-field,
.landing-page .dark-field {
  border-color: var(--landing-border);
  border-radius: 7px;
  background: #ffffff;
  color: #111827;
}

.landing-page .field::placeholder {
  color: #8b95a4;
}

.landing-page .field:focus,
.landing-page .select-field:focus,
.landing-page .textarea-field:focus,
.landing-page .dark-field:focus {
  border-color: rgb(49 85 231 / 0.72);
  box-shadow: 0 0 0 4px rgb(49 85 231 / 0.1);
}

.landing-page .dark-field option {
  background: #ffffff;
  color: #111827;
}

.landing-page .tab-btn,
.landing-page .segmented button {
  border-color: var(--landing-border);
  border-radius: 7px;
  background: #ffffff;
  color: #5e6877;
}

.landing-page .tab-btn.is-active,
.landing-page .segmented button.is-active {
  border-color: #b9c5fb;
  background: var(--landing-accent-soft);
  color: #2447cd;
}

.landing-page [data-spotlight]::after {
  background: radial-gradient(380px circle at var(--mouse-x) var(--mouse-y), rgb(49 85 231 / 0.075), transparent 66%);
}

.landing-page .hero {
  min-height: min(740px, calc(100dvh - 76px));
  border-bottom: 1px solid #e7eaf0;
  background: #ffffff;
}

.landing-page .hero-art {
  object-position: center;
  filter: none;
  opacity: 0.98;
  transform: none;
  animation: none;
}

.landing-page .hero::before {
  z-index: -3;
  background:
    linear-gradient(90deg, #ffffff 0%, rgb(255 255 255 / 0.98) 35%, rgb(255 255 255 / 0.78) 52%, rgb(255 255 255 / 0.18) 72%, transparent 100%),
    linear-gradient(180deg, rgb(255 255 255 / 0.16), transparent 72%, #ffffff 100%);
}

.landing-page .hero::after {
  height: 84px;
  background: linear-gradient(180deg, transparent, #ffffff);
}

.landing-page .hero-dot-grid {
  z-index: -1;
  opacity: 0.42;
}

.landing-page .hero-light-rays {
  display: none;
}

.landing-page .hero-layout {
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.82fr);
  gap: 74px;
  padding-block: 64px 82px;
}

.landing-page .hero-content {
  gap: 24px;
  max-width: 650px;
}

.landing-page .hero .eyebrow {
  gap: 9px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #3c485b;
  padding: 0;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
}

.landing-page .hero .eyebrow > span {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--landing-success);
  box-shadow: 0 0 0 4px rgb(22 155 103 / 0.1);
}

.landing-page .hero h1 {
  max-width: 660px;
  color: #080f1e;
  font-size: 64px;
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: 0;
}

.landing-page .hero h1 span:last-child {
  color: #080f1e;
}

.landing-page .hero-copy {
  max-width: 560px;
  color: #4c5768;
  font-size: 19px;
  line-height: 1.55;
}

.landing-page .hero-actions {
  margin-top: 4px;
}

.landing-page .rpc-playground {
  border: 1px solid #d7dee9;
  border-radius: 8px;
  background: rgb(255 255 255 / 0.92);
  box-shadow: 0 28px 80px rgb(35 52 82 / 0.17), 0 2px 8px rgb(35 52 82 / 0.06);
  backdrop-filter: blur(18px) saturate(120%);
}

.landing-page .rpc-playground::before {
  display: none;
}

.landing-page .playground-chrome {
  gap: 15px;
  padding: 20px;
}

.landing-page .playground-head {
  border-color: #e2e6ec;
}

.landing-page .playground-title {
  color: #121a29;
  font-weight: 650;
}

.landing-page .playground-title i {
  color: #3155e7;
}

.landing-page .playground-network-row {
  color: #687383;
}

.landing-page .endpoint-box {
  border-color: #dfe4ec;
  border-radius: 7px;
  background: #f4f6f9;
  color: #485467;
}

.landing-page .request-row strong {
  color: #172033;
}

.landing-page .request-label,
.landing-page .playground-stats small {
  color: #778293;
}

.landing-page .playground-stats {
  border-color: #e2e6ec;
}

.landing-page .playground-stats > span + span {
  border-color: #e2e6ec;
}

.landing-page .playground-stats strong {
  color: #202a3a;
}

.landing-page .json-output {
  border-color: #172238;
  background: #0e1728;
  box-shadow: none;
}

.landing-page .json-output pre {
  color: #dbe4f1;
}

.landing-page .copy-response {
  border-color: #dfe4ec;
  border-radius: 7px;
  background: #ffffff;
  color: #586476;
}

.landing-page .copy-response:hover {
  border-color: #b8c2d0;
  background: #f7f9fc;
  color: #111827;
}

.landing-page .syntax-key {
  color: #8fc7ff;
}

.landing-page .syntax-string {
  color: #9be3bc;
}

.landing-page .syntax-number {
  color: #ffd58d;
}

.landing-page .ecosystem-strip {
  border-bottom: 1px solid #e7eaf0;
  background: #ffffff;
  padding: 32px 0 42px;
}

.landing-page .ecosystem-inner h2 {
  color: #697484;
  font-size: 12px;
  font-weight: 500;
}

.landing-page .logo-wall img {
  filter: grayscale(1) brightness(0.42);
  opacity: 0.56;
}

.landing-page .logo-wall img:hover {
  opacity: 0.86;
}

.landing-page .site-section,
.landing-page .dark-section {
  background: #ffffff;
  color: var(--landing-text);
  padding: 104px 0 112px;
}

.landing-page .site-section.compact {
  padding: 82px 0 90px;
}

.landing-page #products,
.landing-page #networks,
.landing-page #rates,
.landing-page #pricing {
  background: #f7f9fc;
}

.landing-page #gateway {
  border-block: 1px solid #e4e8ef;
  background: #f4f7fa;
}

.landing-page #streams {
  border-block: 1px solid #e6eaf0;
  background: #f8fafc;
}

.landing-page #gateway + .site-section,
.landing-page main > .site-section:nth-last-of-type(2) {
  background: #ffffff;
}

.landing-page main > .site-section:last-of-type {
  border-block: 1px solid #dfe5f1;
  background: #eef3ff;
}

.landing-page .section-head {
  gap: 18px;
  max-width: 860px;
  margin-bottom: 46px;
}

.landing-page .section-kicker,
.landing-page .content-label {
  color: #3155e7;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 650;
}

.landing-page .section-title {
  max-width: 820px;
  color: #0b1220;
  font-size: 50px;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0;
}

.landing-page .section-copy,
.landing-page .dark-section .section-copy,
.landing-page .muted,
.landing-page .dark-section .muted {
  color: var(--landing-muted);
}

.landing-page .section-copy {
  max-width: 660px;
  font-size: 17px;
  line-height: 1.65;
}

.landing-page .bento {
  gap: 14px;
}

.landing-page .bento-card {
  min-height: 238px;
  border-color: var(--landing-border);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 1px 2px rgb(18 31 53 / 0.03);
}

.landing-page .bento-card:nth-child(1) {
  background: #f8faff;
}

.landing-page .bento-card:nth-child(4) {
  background: #f5fbf8;
}

.landing-page .bento-card:hover {
  border-color: #bfc8d6;
  background-color: #ffffff;
  box-shadow: 0 18px 42px rgb(31 48 78 / 0.09);
}

.landing-page .bento-card h3 {
  color: #111827;
  font-size: 21px;
  font-weight: 600;
}

.landing-page .product-icon,
.landing-page .power-icon,
.landing-page .network-logo,
.landing-page .node-icon,
.landing-page .decision-icon {
  border-color: #d6defd;
  border-radius: 7px;
  background: #edf1ff;
  color: #3155e7;
}

.landing-page .network-logo img {
  filter: grayscale(1) brightness(0.66);
}

.landing-page .mini-metric span,
.landing-page .route-cell,
.landing-page .network-chip,
.landing-page .price-row,
.landing-page .security-card,
.landing-page .insight-card {
  border-color: var(--landing-border);
  border-radius: 7px;
  background: #f7f9fc;
}

.landing-page .mini-metric span {
  color: #697485;
}

.landing-page .mini-metric strong {
  color: #172033;
}

.landing-page .route-cell {
  color: #465266;
}

.landing-page .gateway-lab {
  min-height: 650px;
  border-color: #d7dde7;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgb(28 44 71 / 0.11);
}

.landing-page .gateway-stage-bar {
  border-color: #e1e5ec;
  background: #ffffff;
  color: #6a7585;
}

.landing-page .gateway-stage-bar span:first-child {
  color: #2d3748;
}

.landing-page .gateway-stage-bar i {
  color: #3155e7;
}

.landing-page .gateway-topology {
  background:
    linear-gradient(rgb(49 85 231 / 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgb(49 85 231 / 0.055) 1px, transparent 1px),
    radial-gradient(circle at 48% 50%, rgb(22 155 103 / 0.08), transparent 30%);
  background-color: #fbfcfe;
  background-size: 40px 40px, 40px 40px, auto;
}

.landing-page .route-line-base {
  stroke: #d1d8e3;
}

.landing-page .route-line-active {
  filter: none;
  opacity: 0.94;
}

.landing-page .route-packet {
  fill: #169b67;
  filter: none;
}

.landing-page .topology-node {
  border-color: #d6dde7;
  border-radius: 8px;
  background: rgb(255 255 255 / 0.97);
  box-shadow: 0 10px 26px rgb(31 48 78 / 0.1), inset 0 1px 0 #ffffff;
}

.landing-page .topology-gateway {
  border-color: #80c8aa;
  background: #f1fbf6;
  box-shadow: 0 14px 32px rgb(22 155 103 / 0.12);
}

.landing-page .topology-provider.is-degraded {
  border-color: #e2c892;
  background: #fffaf0;
  opacity: 0.76;
}

.landing-page .topology-node small,
.landing-page .gateway-controls small,
.landing-page .gateway-telemetry small,
.landing-page .gateway-decision small {
  color: #7c8797;
}

.landing-page .topology-node strong {
  color: #172033;
}

.landing-page .topology-node em {
  color: #697586;
}

.landing-page .node-health {
  color: #138257;
}

.landing-page .topology-provider.is-degraded .node-health {
  color: #a66b12;
}

.landing-page .gateway-telemetry {
  border-color: #e1e5ec;
  background: #ffffff;
}

.landing-page .gateway-telemetry > span + span {
  border-color: #e1e5ec;
}

.landing-page .gateway-telemetry strong {
  color: #202a3a;
}

.landing-page .gateway-controls {
  border-color: #e1e5ec;
  background: #f8fafc;
}

.landing-page .gateway-controls h3 {
  color: #111827;
  font-weight: 600;
}

.landing-page .gateway-segmented {
  border-color: #dbe1e9;
  background: #edf1f5;
}

.landing-page .gateway-segmented button {
  color: #5d6878;
}

.landing-page .gateway-segmented button.is-active {
  border-color: #ffffff;
  background: #ffffff;
  color: #2447cd;
  box-shadow: 0 2px 8px rgb(31 48 78 / 0.08);
}

.landing-page .gateway-mode-copy {
  color: #5f6a7a;
}

.landing-page .routing-row {
  border-color: #e1e5ec;
}

.landing-page .routing-row strong {
  color: #202938;
}

.landing-page .routing-row small {
  color: #7a8595;
}

.landing-page .route-value {
  color: #3155e7;
}

.landing-page .gateway-decision {
  border-color: #bee7d3;
  border-radius: 7px;
  background: #edf9f3;
}

.landing-page .gateway-decision .decision-icon {
  border-color: #b9e4cf;
  background: #dff4e9;
  color: #147b53;
}

.landing-page .gateway-decision strong {
  color: #1f4e3c;
}

.landing-page .power-card {
  border-color: var(--landing-border);
}

.landing-page .power-card:hover,
.landing-page .power-card:focus-within {
  background: #f7f9fc;
}

.landing-page .power-card h3 {
  color: #172033;
  font-weight: 600;
}

.landing-page .power-card p {
  color: #657080;
}

.landing-page .network-search {
  border-color: var(--landing-border);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 1px 2px rgb(18 31 53 / 0.03);
}

.landing-page .network-card {
  border-color: var(--landing-border);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 1px 2px rgb(18 31 53 / 0.03);
}

.landing-page .network-card:hover {
  border-color: #bfc8d6;
  background: #ffffff;
  box-shadow: 0 14px 34px rgb(31 48 78 / 0.08);
}

.landing-page .network-card h3 {
  color: #172033;
}

.landing-page .fine-print {
  color: #778293;
}

.landing-page .api-explorer {
  border-color: #d7dde7;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 22px 60px rgb(28 44 71 / 0.1);
}

.landing-page .explorer-controls {
  border-color: #e0e5ec;
  background: #f8fafc;
}

.landing-page .explorer-controls label {
  color: #5d6878;
}

.landing-page .api-explorer > .code-window,
.landing-page .code-window {
  border-color: #172238;
  border-radius: 8px;
  background: #0e1728;
  color: #dbe4f1;
  box-shadow: 0 22px 60px rgb(22 34 55 / 0.16);
}

.landing-page .code-toolbar {
  border-color: #27334a;
  color: #aeb9c9;
}

.landing-page .terminal-feed {
  border-color: #1d2a40;
  border-radius: 8px;
  background: #0e1728;
  color: #b7c1d0;
  box-shadow: 0 18px 46px rgb(22 34 55 / 0.12);
}

.landing-page .event-line {
  border-color: #1e2b42;
  color: #aab6c7;
}

.landing-page .event-line strong {
  color: #84a1ff;
}

.landing-page .wallet-mock,
.landing-page .market-board,
.landing-page .observability-mock {
  border-color: #d9dfe8;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 52px rgb(31 48 78 / 0.09);
}

.landing-page .wallet-mock {
  background: #f7fbf9;
}

.landing-page .wallet-mock h3 {
  color: #111827;
  font-weight: 550;
}

.landing-page .wallet-address {
  background: #ffffff;
  color: #465266;
}

.landing-page .price-row {
  border-color: var(--landing-border);
  background: transparent;
}

.landing-page .price-row strong,
.landing-page .price-row > span:nth-child(2) {
  color: #172033;
}

.landing-page .price-change.is-up,
.landing-page .price-sparkline {
  color: #138257;
}

.landing-page .price-change.is-down {
  color: #bf4c57;
}

.landing-page .dev-code {
  gap: 72px;
}

.landing-page .stats-strip .route-cell {
  border-color: var(--landing-border);
  background: transparent;
}

.landing-page .stats-strip strong {
  color: #172033;
}

.landing-page .security-card {
  border-color: var(--landing-border);
  background: transparent;
}

.landing-page .security-card h3 {
  color: #172033;
}

.landing-page .pricing-card {
  border-color: var(--landing-border);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 1px 2px rgb(18 31 53 / 0.03);
}

.landing-page .pricing-card:hover {
  border-color: #bfc8d6;
  box-shadow: 0 18px 44px rgb(31 48 78 / 0.09);
}

.landing-page .pricing-card.featured {
  border-color: #9fb0f7;
  background: #f7f9ff;
}

.landing-page .pricing-card.featured::before {
  background: #3155e7;
}

.landing-page .pricing-card h3,
.landing-page .plan-price {
  color: #111827;
}

.landing-page .insight-card {
  border-color: var(--landing-border);
  background: #ffffff;
}

.landing-page .insight-card:first-child {
  background: #eef3ff;
}

.landing-page .insight-card h3 {
  color: #111827;
}

.landing-page .content-tag {
  color: #3155e7;
}

.landing-page footer.site-section,
.landing-page footer.dark-section {
  border-top: 1px solid #dfe4ec;
  background: #f7f9fc;
  color: #172033;
}

.landing-page .footer-col > strong {
  color: #273244;
}

.landing-page .footer-col a:not(.brand) {
  color: #687384;
}

.landing-page .footer-col a:hover {
  color: #172033;
}

.landing-page .footer-meta {
  border-color: #dfe4ec;
}

@media (max-width: 1180px) {
  .landing-page .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.82fr);
    gap: 42px;
  }

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

  .landing-page .gateway-controls {
    border-color: #e1e5ec;
  }
}

@media (max-width: 1080px) {
  .landing-page .container {
    width: min(100% - 40px, 960px);
  }

  .landing-page .mobile-nav {
    inset: 64px 14px auto;
    border-color: var(--landing-border);
    background: rgb(255 255 255 / 0.98);
    box-shadow: 0 20px 48px rgb(21 33 56 / 0.14);
  }

  .landing-page .mobile-nav a {
    color: #3c4758;
  }

  .landing-page .mobile-nav a:hover {
    background: #f2f5f8;
    color: #111827;
  }

  .landing-page .hero {
    min-height: auto;
  }

  .landing-page .hero::before {
    background:
      linear-gradient(90deg, #ffffff 0%, rgb(255 255 255 / 0.96) 45%, rgb(255 255 255 / 0.42) 78%, transparent),
      linear-gradient(180deg, transparent 60%, #ffffff);
  }

  .landing-page .hero-layout {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-block: 70px 94px;
  }

  .landing-page .hero-content {
    max-width: 730px;
  }

  .landing-page .hero h1 {
    font-size: 62px;
  }

  .landing-page .rpc-playground {
    width: min(100%, 680px);
  }

  .landing-page .explorer-controls {
    border-color: #e0e5ec;
  }
}

@media (max-width: 760px) {
  .announcement-bar {
    min-height: 34px;
    padding-inline: 12px;
  }

  .announcement-bar a {
    gap: 7px;
    font-size: 11px;
  }

  .landing-page .container {
    width: min(100% - 28px, 720px);
  }

  .landing-page .site-section,
  .landing-page .dark-section {
    padding: 74px 0 82px;
  }

  .landing-page .site-section.compact {
    padding: 64px 0 72px;
  }

  .landing-page .section-head {
    margin-bottom: 34px;
  }

  .landing-page .section-title {
    font-size: 38px;
    line-height: 1.1;
  }

  .landing-page .hero {
    min-height: auto;
  }

  .landing-page .hero-art {
    width: 168%;
    height: 58%;
    inset: auto -61% 0 auto;
    object-fit: cover;
    object-position: 70% center;
    opacity: 0.78;
  }

  .landing-page .hero::before {
    background: linear-gradient(180deg, #ffffff 0%, rgb(255 255 255 / 0.98) 47%, rgb(255 255 255 / 0.54) 75%, #ffffff 100%);
  }

  .landing-page .hero::after {
    display: none;
  }

  .landing-page .hero-layout {
    gap: 30px;
    padding-block: 42px 54px;
  }

  .landing-page .hero-content {
    gap: 18px;
  }

  .landing-page .hero h1 {
    font-size: 42px;
    line-height: 1.04;
  }

  .landing-page .hero-copy {
    font-size: 17px;
  }

  .landing-page .hero-actions {
    grid-template-columns: 1fr;
  }

  .landing-page .hero-actions .btn {
    width: 100%;
  }

  .landing-page .rpc-playground {
    background: rgb(255 255 255 / 0.96);
    box-shadow: 0 20px 48px rgb(35 52 82 / 0.13);
  }

  .landing-page .playground-stats > span + span {
    border-color: #e2e6ec;
  }

  .landing-page .gateway-topology {
    background:
      linear-gradient(rgb(49 85 231 / 0.05) 1px, transparent 1px),
      linear-gradient(90deg, rgb(49 85 231 / 0.05) 1px, transparent 1px);
    background-color: #fbfcfe;
    background-size: 32px 32px;
  }

  .landing-page .gateway-telemetry > span + span {
    border-color: #e1e5ec;
  }

  .landing-page .gateway-controls {
    background: #f8fafc;
  }

  .landing-page .gateway-segmented {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .landing-page .gateway-segmented button {
    white-space: normal;
  }

  .landing-page .stats-strip .route-cell {
    border-color: var(--landing-border);
  }
}

@media (max-width: 420px) {
  .announcement-bar span {
    display: none;
  }

  .landing-page .hero h1 {
    font-size: 36px;
  }

  .landing-page .section-title {
    font-size: 34px;
  }

  .landing-page .gateway-segmented {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .landing-page .announcement-bar i,
  .landing-page .btn,
  .landing-page .bento-card,
  .landing-page .network-card,
  .landing-page .pricing-card {
    transition: none;
  }
}

.landing-page .hero .eyebrow > span {
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.landing-page .hero .eyebrow .eyebrow-icon {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid #cfd9ff;
  border-radius: 7px;
  background: #eef2ff;
  color: #3155e7;
  font-size: 16px;
}

.landing-page .hero .eyebrow > span:last-child {
  color: #425066;
}

.landing-page .ecosystem-strip {
  padding: 27px 0 31px;
}

.landing-page .ecosystem-inner {
  grid-template-columns: 220px 1fr;
  gap: 36px;
}

.landing-page .ecosystem-inner h2 {
  max-width: 205px;
  color: #566276;
  line-height: 1.45;
}

.landing-page .logo-wall {
  gap: 12px;
}

.landing-page .logo-wall > span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-width: 0;
  color: #313b4c;
  font-size: 13px;
  font-weight: 600;
}

.landing-page .logo-wall img {
  width: 25px;
  height: 25px;
  max-width: none;
  max-height: none;
  margin: 0;
  object-fit: contain;
  filter: none;
  opacity: 1;
}

.landing-page .site-section,
.landing-page .dark-section {
  padding: 94px 0 100px;
}

.landing-page .site-section.compact {
  padding: 78px 0 84px;
}

.landing-page #products {
  padding-bottom: 94px;
}

.landing-page .bento {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 12px;
}

.landing-page .bento-card,
.landing-page .bento-card:nth-child(1),
.landing-page .bento-card:nth-child(2),
.landing-page .bento-card:nth-child(3),
.landing-page .bento-card:nth-child(4),
.landing-page .bento-card:nth-child(5),
.landing-page .bento-card:nth-child(6),
.landing-page .bento-card:nth-child(7),
.landing-page .bento-card:nth-child(8) {
  grid-column: span 3;
  min-height: 216px;
  gap: 20px;
  padding: 22px;
}

.landing-page .bento-card:nth-child(1),
.landing-page .bento-card:nth-child(4),
.landing-page .bento-card:nth-child(6) {
  background: #ffffff;
}

.landing-page .bento-card:nth-child(2),
.landing-page .bento-card:nth-child(7) {
  background: #f8faff;
}

.landing-page .bento-card > div:first-child {
  gap: 10px;
}

.landing-page .bento-card h3 {
  font-size: 18px;
}

.landing-page .bento-card .muted {
  font-size: 13px;
  line-height: 1.5;
}

.landing-page .bento-card .route-cell {
  overflow: hidden;
  padding: 10px 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.landing-page .mini-chart {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: end;
  min-height: 50px;
  color: #3155e7;
}

.landing-page .mini-chart > span {
  display: grid;
  gap: 5px;
}

.landing-page .mini-chart small {
  color: #758093;
  font-family: var(--font-code);
  font-size: 9px;
}

.landing-page .mini-chart strong {
  color: #138257;
  font-family: var(--font-code);
  font-size: 14px;
}

.landing-page .mini-chart svg {
  width: 100%;
  height: 48px;
}

.landing-page #gateway {
  padding-block: 90px 96px;
}

.landing-page #gateway .section-head {
  margin-bottom: 40px;
}

.landing-page .gateway-lab {
  min-height: 590px;
}

.landing-page .gateway-stage {
  grid-template-rows: 52px minmax(0, 1fr) 66px;
}

.landing-page .gateway-topology {
  min-height: 470px;
}

.landing-page #networks {
  border-bottom: 1px solid #e4e8ef;
  background: #f7f9fc;
}

.landing-page #networks .section-head {
  margin-bottom: 32px;
}

.landing-page .network-toolbar {
  display: grid;
  grid-template-columns: auto minmax(260px, 1fr) auto;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
  border: 1px solid #dce2eb;
  border-radius: 8px;
  background: #ffffff;
  padding: 8px;
  box-shadow: 0 1px 2px rgb(18 31 53 / 0.03);
}

.landing-page .network-filters {
  display: grid;
  grid-template-columns: repeat(3, minmax(68px, auto));
  gap: 4px;
  border: 0;
  background: #edf1f5;
  padding: 4px;
}

.landing-page .network-filters button {
  min-height: 34px;
  border: 0;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 600;
}

.landing-page .network-search {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  min-height: 42px;
  margin: 0;
  border: 0;
  border-radius: 6px;
  background: #f7f9fc;
  padding: 0 13px;
  color: #7a8595;
  box-shadow: none;
}

.landing-page .network-search input {
  min-width: 0;
  border: 0;
  background: transparent;
  color: #172033;
  font: inherit;
  outline: 0;
}

.landing-page .network-search input::placeholder {
  color: #8a94a3;
}

.landing-page .network-count {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #667183;
  font-size: 12px;
  white-space: nowrap;
}

.landing-page .network-count strong {
  color: #172033;
  font-family: var(--font-code);
  font-weight: 600;
}

.landing-page .network-count a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid #d8dee8;
  border-radius: 7px;
  background: #ffffff;
  color: #3155e7;
  font-size: 17px;
}

.landing-page .networks-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.landing-page .network-card,
.landing-page .network-card:first-child,
.landing-page .network-card:last-child {
  position: relative;
  display: grid;
  grid-column: auto;
  gap: 14px;
  align-content: start;
  min-height: 174px;
  border: 1px solid #dce2eb;
  border-radius: 8px;
  background: #ffffff;
  padding: 16px;
  color: #172033;
  box-shadow: 0 1px 2px rgb(18 31 53 / 0.03);
  transition: transform var(--normal), border-color var(--normal), box-shadow var(--normal);
}

.landing-page .network-card:hover {
  border-color: #aebce2;
  background: #ffffff;
  box-shadow: 0 12px 28px rgb(31 48 78 / 0.08);
  transform: translateY(-2px);
}

.landing-page .network-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.landing-page .network-logo {
  width: 38px;
  height: 38px;
  border-color: #dce2eb;
  background: #ffffff;
  padding: 7px;
}

.landing-page .network-logo img {
  width: 100%;
  height: 100%;
  filter: none;
}

.landing-page .network-health {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #14754f;
  font-size: 10px;
  font-weight: 650;
}

.landing-page .network-health i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #169b67;
  box-shadow: 0 0 0 3px rgb(22 155 103 / 0.1);
}

.landing-page .network-health.is-degraded {
  color: #9a6516;
}

.landing-page .network-health.is-degraded i {
  background: #d9972d;
  box-shadow: 0 0 0 3px rgb(217 151 45 / 0.12);
}

.landing-page .network-card-title {
  display: grid;
  gap: 3px;
}

.landing-page .network-card-title strong {
  font-size: 16px;
  font-weight: 620;
}

.landing-page .network-card-title small {
  color: #748093;
  font-size: 11px;
}

.landing-page .network-card-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: auto;
}

.landing-page .network-card-meta > span {
  display: grid;
  gap: 3px;
}

.landing-page .network-card-meta small {
  color: #8490a0;
  font-size: 9px;
}

.landing-page .network-card-meta strong {
  color: #435064;
  font-family: var(--font-code);
  font-size: 10px;
  font-weight: 550;
}

.landing-page .network-card-arrow {
  position: absolute;
  right: 15px;
  bottom: 15px;
  color: #3155e7;
  font-size: 16px;
  opacity: 0;
  transform: translate(-3px, 3px);
  transition: opacity var(--fast), transform var(--fast);
}

.landing-page .network-card:hover .network-card-arrow,
.landing-page .network-card:focus-visible .network-card-arrow {
  opacity: 1;
  transform: translate(0, 0);
}

.landing-page .network-empty {
  grid-column: 1 / -1;
  border: 1px dashed #cbd3df;
  border-radius: 8px;
  background: #ffffff;
  color: #657080;
  padding: 34px;
  text-align: center;
}

.landing-page .mega-item .network-logo {
  width: 34px;
  height: 34px;
  padding: 6px;
}

.landing-page .realtime-section,
.landing-page #streams {
  border-block: 1px solid #e4e8ef;
  background: #f7f9fc;
}

.landing-page .realtime-showcase {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  min-height: 500px;
  overflow: hidden;
  border: 1px solid #d7dde7;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 22px 60px rgb(28 44 71 / 0.1);
}

.landing-page .realtime-nav {
  display: grid;
  align-content: start;
  gap: 6px;
  border-right: 1px solid #e0e5ec;
  background: #f8fafc;
  padding: 14px;
}

.landing-page .realtime-nav button {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 11px;
  align-items: center;
  border: 1px solid transparent;
  border-radius: 7px;
  background: transparent;
  color: #5f6b7c;
  padding: 12px;
  text-align: left;
  transition: background var(--fast), border-color var(--fast), color var(--fast);
}

.landing-page .realtime-nav button > i {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid #dbe1ea;
  border-radius: 7px;
  background: #ffffff;
  color: #5e6a7d;
  font-size: 17px;
}

.landing-page .realtime-nav button > span {
  display: grid;
  gap: 3px;
}

.landing-page .realtime-nav strong {
  color: #253043;
  font-size: 13px;
  font-weight: 620;
}

.landing-page .realtime-nav small {
  color: #7c8797;
  font-size: 10px;
}

.landing-page .realtime-nav button.is-active {
  border-color: #ccd6fb;
  background: #eef2ff;
}

.landing-page .realtime-nav button.is-active > i {
  border-color: #c7d2fb;
  color: #3155e7;
}

.landing-page .realtime-panels {
  min-width: 0;
}

.landing-page .realtime-panel {
  display: none;
  min-height: 100%;
  padding: 22px;
}

.landing-page .realtime-panel.is-active {
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr);
  gap: 16px;
}

.landing-page .realtime-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 42px;
}

.landing-page .realtime-panel-head > span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #253043;
  font-size: 13px;
  font-weight: 620;
}

.landing-page .realtime-panel-head > span:first-child i {
  color: #3155e7;
  font-size: 17px;
}

.landing-page .realtime-panel-head .btn {
  min-height: 36px;
  padding: 8px 13px;
  font-size: 12px;
}

.landing-page .realtime-panel-head .icon-btn {
  width: 36px;
  height: 36px;
}

.landing-page .realtime-panel .terminal-feed {
  min-height: 310px;
  max-height: 310px;
  box-shadow: none;
}

.landing-page .signal-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  border: 1px solid #e0e5ec;
  border-radius: 8px;
  background: #f8fafc;
  padding: 18px;
}

.landing-page .signal-flow > div {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.landing-page .signal-flow > i {
  color: #9aa5b5;
}

.landing-page .signal-index {
  color: #3155e7;
  font-family: var(--font-code);
  font-size: 10px;
}

.landing-page .signal-flow strong {
  color: #1e293b;
  font-size: 12px;
}

.landing-page .signal-flow small {
  color: #7a8595;
  font-size: 10px;
}

.landing-page .delivery-table {
  display: grid;
  align-content: start;
  align-self: start;
  border: 1px solid #e0e5ec;
  border-radius: 8px;
  background: #ffffff;
}

.landing-page .delivery-table > span {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  border-bottom: 1px solid #e8ebf0;
  padding: 14px 16px;
}

.landing-page .delivery-table > span:last-child {
  border-bottom: 0;
}

.landing-page .delivery-table strong,
.landing-page .delivery-table small,
.landing-page .delivery-table em {
  font-family: var(--font-code);
  font-size: 10px;
  font-style: normal;
}

.landing-page .delivery-table strong {
  color: #263246;
}

.landing-page .delivery-table small {
  color: #6d7889;
}

.landing-page .delivery-table em {
  color: #14754f;
}

.landing-page .wallet-overview {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: 18px;
  align-items: stretch;
}

.landing-page .wallet-balance,
.landing-page .wallet-policy {
  display: grid;
  align-content: center;
  gap: 12px;
  min-height: 260px;
  border: 1px solid #e0e5ec;
  border-radius: 8px;
  background: #f8fafc;
  padding: 26px;
}

.landing-page .wallet-balance small {
  color: #778293;
  font-size: 11px;
}

.landing-page .wallet-balance strong {
  color: #101827;
  font-family: var(--font-code);
  font-size: 34px;
  font-weight: 560;
}

.landing-page .wallet-balance span {
  color: #5f6b7c;
  font-size: 11px;
}

.landing-page .wallet-policy {
  align-content: center;
  gap: 16px;
  background: #f2faf6;
}

.landing-page .wallet-policy span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #315445;
  font-size: 12px;
  font-weight: 550;
}

.landing-page .wallet-policy i {
  color: #169b67;
}

.landing-page .wallet-actions {
  display: flex;
  gap: 10px;
}

.landing-page .observability-chart {
  height: 230px;
}

.landing-page .trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 14px;
  border: 1px solid #dce2eb;
  border-radius: 8px;
  background: #f8fafc;
}

.landing-page .trust-strip > span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 68px;
  padding: 14px 18px;
}

.landing-page .trust-strip > span + span {
  border-left: 1px solid #dfe4ec;
}

.landing-page .trust-strip i {
  color: #3155e7;
  font-size: 19px;
}

.landing-page .trust-strip strong {
  color: #3b4658;
  font-size: 12px;
  font-weight: 600;
}

.landing-page #pricing {
  background: #f7f9fc;
  padding-block: 88px 94px;
}

.landing-page .pricing-card {
  min-height: 420px;
}

@media (max-width: 1180px) {
  .landing-page .bento-card,
  .landing-page .bento-card:nth-child(1),
  .landing-page .bento-card:nth-child(2),
  .landing-page .bento-card:nth-child(3),
  .landing-page .bento-card:nth-child(4),
  .landing-page .bento-card:nth-child(5),
  .landing-page .bento-card:nth-child(6),
  .landing-page .bento-card:nth-child(7),
  .landing-page .bento-card:nth-child(8) {
    grid-column: span 6;
  }

  .landing-page .networks-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .landing-page .ecosystem-inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .landing-page .ecosystem-inner h2 {
    max-width: none;
  }

  .landing-page .network-toolbar {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .landing-page .network-count {
    grid-column: 1 / -1;
    justify-content: space-between;
    padding-inline: 4px;
  }

  .landing-page .networks-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .landing-page .realtime-showcase {
    grid-template-columns: 1fr;
  }

  .landing-page .realtime-nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-right: 0;
    border-bottom: 1px solid #e0e5ec;
  }

  .landing-page .wallet-overview {
    grid-template-columns: 1fr;
  }

  .landing-page .wallet-balance,
  .landing-page .wallet-policy {
    min-height: 170px;
  }
}

@media (max-width: 640px) {
  .landing-page .site-section,
  .landing-page .dark-section {
    padding: 70px 0 76px;
  }

  .landing-page .logo-wall {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px 10px;
  }

  .landing-page .logo-wall > span {
    justify-content: flex-start;
    font-size: 11px;
  }

  .landing-page .bento-card,
  .landing-page .bento-card:nth-child(1),
  .landing-page .bento-card:nth-child(2),
  .landing-page .bento-card:nth-child(3),
  .landing-page .bento-card:nth-child(4),
  .landing-page .bento-card:nth-child(5),
  .landing-page .bento-card:nth-child(6),
  .landing-page .bento-card:nth-child(7),
  .landing-page .bento-card:nth-child(8) {
    grid-column: span 12;
    min-height: 190px;
  }

  .landing-page .gateway-topology {
    min-height: 0;
  }

  .landing-page .network-toolbar {
    grid-template-columns: 1fr;
  }

  .landing-page .network-filters,
  .landing-page .network-search,
  .landing-page .network-count {
    grid-column: 1;
  }

  .landing-page .network-filters {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .landing-page .network-card,
  .landing-page .network-card:first-child,
  .landing-page .network-card:last-child {
    min-height: 166px;
    padding: 14px;
  }

  .landing-page .network-health {
    font-size: 9px;
  }

  .landing-page .network-card-meta {
    gap: 5px;
  }

  .landing-page .realtime-nav {
    gap: 4px;
    padding: 8px;
  }

  .landing-page .realtime-nav button {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 9px 5px;
    text-align: center;
  }

  .landing-page .realtime-nav button > span {
    justify-items: center;
  }

  .landing-page .realtime-nav small {
    display: none;
  }

  .landing-page .realtime-panel {
    padding: 15px;
  }

  .landing-page .signal-flow {
    grid-template-columns: 1fr;
  }

  .landing-page .signal-flow > i {
    justify-self: center;
    transform: rotate(90deg);
  }

  .landing-page .delivery-table > span {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 9px;
  }

  .landing-page .delivery-table em {
    grid-column: 2;
  }

  .landing-page .wallet-balance strong {
    font-size: 28px;
  }

  .landing-page .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .landing-page .trust-strip > span + span {
    border-left: 0;
  }

  .landing-page .trust-strip > span:nth-child(even) {
    border-left: 1px solid #dfe4ec;
  }

  .landing-page .trust-strip > span:nth-child(n + 3) {
    border-top: 1px solid #dfe4ec;
  }
}

@media (max-width: 390px) {
  .landing-page .network-card-meta {
    grid-template-columns: 1fr;
  }

  .landing-page .network-card-meta > span:last-child {
    display: none;
  }
}

@media (max-width: 1240px) {
  .landing-page .mobile-nav {
    inset: var(--mobile-top, 80px) 14px auto;
    display: grid;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
  }

  .landing-page .mobile-nav.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .landing-page .mobile-nav-actions .btn-primary {
    color: #ffffff;
  }

  .landing-page .mobile-nav-actions .btn-secondary {
    color: #172033;
  }
}
