/* Standalone visual system for the Websitex landing-page experiment. */
@font-face {
  font-family: 'Visuelt';
  src: url('/saito/fonts/visuelt-regular.woff2') format('woff2');
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: 'Visuelt';
  src: url('/saito/fonts/visuelt-medium.woff2') format('woff2');
  font-display: swap;
  font-style: normal;
  font-weight: 600;
}

@font-face {
  font-family: 'Visuelt';
  src: url('/saito/fonts/visuelt-black.woff2') format('woff2');
  font-display: swap;
  font-style: normal;
  font-weight: 800;
}

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

html {
  font-size: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  position: static;
  width: auto;
  height: auto;
  max-width: none;
  max-height: none;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  background: #f7f3ed;
  color: #17171b;
  font-family: 'Visuelt', 'Helvetica Neue', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

body.traffic-dialog-open,
body.route-dialog-open {
  overflow: hidden;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

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

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

button {
  border: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: -0.045em;
  line-height: 0.98;
}

h1,
h2 {
  font-weight: 600;
}

h2 {
  font-size: clamp(3rem, 6.2vw, 7.25rem);
}

h3 {
  font-size: clamp(1.65rem, 2.6vw, 2.6rem);
  font-weight: 600;
}

::selection {
  background: #f71f3d;
  color: #fff;
}

:focus-visible {
  outline: 3px solid #ff6b58;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 9999;
  padding: 0.8rem 1rem;
  background: #fff;
  color: #17171b;
  transform: translateY(-200%);
}

.skip-link:focus {
  transform: none;
}

.section-shell {
  padding: clamp(6rem, 11vw, 10rem) max(1.25rem, calc((100vw - 88rem) / 2));
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.4rem;
  color: #bb1730;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 1.8rem;
  height: 1px;
  background: currentColor;
  content: '';
}

.eyebrow-light {
  color: #ff8c7d;
}

.button {
  display: inline-flex;
  min-height: 3.75rem;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  padding: 0.9rem 1.4rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

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

.button-primary {
  background: #f71f3d;
  color: #fff;
}

.button-primary:hover {
  background: #d50f2c;
}

.button-dark {
  background: #17171b;
  color: #fff;
}

.button-dark:hover {
  background: #f71f3d;
}

.button-light {
  background: #fff;
  color: #17171b;
}

.button-light:hover {
  background: #ffdfd8;
}

.button-small {
  min-height: 2.75rem;
  padding: 0.7rem 1rem;
  font-size: 0.82rem;
}

.button-logo {
  width: 1rem;
  height: 1rem;
  object-fit: contain;
}

.text-action {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid #17171b;
  font-weight: 600;
}

.text-action span {
  transition: transform 180ms ease;
}

.text-action:hover span {
  transform: translate(0.2rem, 0.2rem);
}

.text-action-light {
  border-color: #fff6;
  color: #fff;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  display: grid;
  min-height: 5.4rem;
  grid-template-columns: minmax(8rem, 1fr) auto minmax(8rem, 1fr);
  align-items: center;
  padding: 0 max(1.25rem, calc((100vw - 88rem) / 2));
  border-bottom: 1px solid transparent;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    min-height 180ms ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
  min-height: 4.75rem;
  border-color: #17171b1f;
  background: #f7f3edf2;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

/* A backdrop filter makes this header the containing block for its fixed menu. */
.site-header.menu-active {
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.brand {
  position: relative;
  z-index: 2;
  width: 7.75rem;
}

.brand img,
.footer-brand img {
  width: 100%;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.desktop-nav a,
.header-link {
  position: relative;
  font-size: 0.84rem;
  font-weight: 600;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.55rem;
  left: 0;
  height: 2px;
  background: #f71f3d;
  content: '';
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a.is-current::after {
  transform: scaleX(1);
}

.header-actions {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.2rem;
}

.menu-toggle {
  position: relative;
  z-index: 2;
  display: none;
  width: 2.9rem;
  height: 2.9rem;
  place-items: center;
  border: 1px solid #17171b33;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  width: 1rem;
  height: 1px;
  background: #17171b;
  transition: transform 180ms ease;
}

.menu-toggle span:first-child {
  transform: translateY(-0.2rem);
}

.menu-toggle span:last-child {
  transform: translateY(0.2rem);
}

.menu-toggle[aria-expanded='true'] span:first-child {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded='true'] span:last-child {
  transform: rotate(-45deg);
}

.saito-menu-toggle[hidden],
.mobile-nav-main [data-saito-profile][hidden],
.site-header.saito-menu-ready .header-actions .button {
  display: none;
}

@media (min-width: 821px) {
  .saito-menu-toggle:not([hidden]) {
    display: grid;
  }
}

@media (max-width: 820px) {
  .header-actions .saito-menu-toggle {
    display: none;
  }
}

.mobile-nav {
  position: fixed;
  inset: 0;
  display: none;
  padding: 7rem max(1.25rem, calc((100vw - 88rem) / 2)) max(2rem, env(safe-area-inset-bottom));
  background: radial-gradient(circle at 90% 10%, #ff8d79 0, transparent 30%), #f7f3ed;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-1rem);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.mobile-nav.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.mobile-nav-main {
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
}

.mobile-nav-main a {
  display: flex;
  min-height: 4.4rem;
  align-items: center;
  gap: 1.25rem;
  border-bottom: 1px solid #17171b29;
  font-size: clamp(2rem, 10vw, 3.2rem);
  font-weight: 600;
  letter-spacing: -0.05em;
}

.mobile-nav-main span {
  width: 2rem;
  color: #bb1730;
  font-family: monospace;
  font-size: 0.65rem;
  letter-spacing: 0;
}

.mobile-nav-main .mobile-nav-external {
  width: auto;
  margin-left: auto;
  color: currentColor;
  font-family: inherit;
  font-size: 0.8em;
}

.mobile-nav-secondary {
  display: flex;
  flex-shrink: 0;
  flex-wrap: wrap;
  gap: 0.7rem 1.5rem;
}

.mobile-nav-secondary a {
  font-size: 0.78rem;
  font-weight: 600;
}

/* Keep the live Saito shell behind the marketing header and proxy its menu trigger. */
body.websitex {
  --websitex-site-header-height: 5.4rem;
}

/* Keep stale browser bundles from flashing or blocking on the global sync overlay. */
body.websitex .saito-overlay:has(#saito-sync),
body.websitex .saito-overlay:has(#saito-sync) + .saito-overlay-backdrop {
  display: none !important;
}

body.websitex #saito-header {
  top: 0;
  z-index: 900;
  width: 100vw;
  height: var(--websitex-site-header-height);
  padding: 0 max(1.25rem, calc((100vw - 88rem) / 2));
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

body.websitex #saito-header > .saito-header-logo-wrapper,
body.websitex #saito-header #header-msg,
body.websitex #saito-header-menu-toggle {
  visibility: hidden;
}

body.websitex .saito-header-hamburger-contents,
body.websitex .saito-header-backdrop {
  top: var(--websitex-site-header-height);
  height: calc(100svh - var(--websitex-site-header-height));
}

body.websitex .saito-header-hamburger-contents {
  position: fixed;
  right: -28rem;
  width: min(28rem, 100vw);
  -ms-overflow-style: none;
  scrollbar-width: none;
}

body.websitex .saito-header-hamburger-contents::-webkit-scrollbar {
  width: 0;
  height: 0;
}

body.websitex .saito-header-hamburger-contents.show-menu {
  right: 0;
}

body.websitex .site-header.is-scrolled + #saito-header .saito-header-hamburger-contents,
body.websitex .site-header.is-scrolled + #saito-header .saito-header-backdrop {
  top: 4.75rem;
  height: calc(100svh - 4.75rem);
}

.hero {
  position: relative;
  display: grid;
  min-height: max(46rem, 100svh);
  grid-template-columns: minmax(0, 0.94fr) minmax(28rem, 1.06fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 7rem);
  overflow: hidden;
  padding: 8rem max(1.25rem, calc((100vw - 88rem) / 2)) 5rem;
  background:
    radial-gradient(circle at 82% 35%, #ffa69099 0, transparent 25%),
    radial-gradient(circle at 60% 75%, #f7009b2b 0, transparent 27%),
    linear-gradient(135deg, #f7f3ed 0 56%, #f1ddd7 100%);
}

.hero-atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-orbit {
  position: absolute;
  border: 1px solid #f71f3d1f;
  border-radius: 50%;
}

.orbit-one {
  top: -25vw;
  right: -12vw;
  width: 70vw;
  height: 70vw;
}

.orbit-two {
  right: 16vw;
  bottom: -31vw;
  width: 48vw;
  height: 48vw;
}

.hero-glow {
  position: absolute;
  top: 20%;
  right: 12%;
  width: 22rem;
  height: 22rem;
  border-radius: 50%;
  background: #ff5a6b33;
  filter: blur(80px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 48rem;
}

.hero h1 {
  max-width: 12ch;
  margin-bottom: 2rem;
  font-size: clamp(4.25rem, 7.4vw, 8.8rem);
}

.hero h1 em {
  display: block;
  color: #f71f3d;
  font-style: normal;
}

.hero-intro {
  max-width: 42rem;
  margin-bottom: 2.4rem;
  color: #414149;
  font-size: clamp(1.12rem, 1.45vw, 1.35rem);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 2.8rem;
  color: #62626a;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.status-dot {
  width: 0.55rem;
  height: 0.55rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #37c478;
  box-shadow: 0 0 0 0.3rem #37c4781f;
}

.hero-note-divider {
  width: 1px;
  height: 0.8rem;
  background: #17171b33;
}

.hero-network {
  position: relative;
  z-index: 1;
  width: min(46vw, 46rem);
  aspect-ratio: 1;
  justify-self: end;
  border: 1px solid #17171b21;
  border-radius: 50%;
}

.network-grid {
  position: absolute;
  inset: 7%;
  overflow: hidden;
  border: 1px solid #f71f3d2e;
  border-radius: 50%;
  background-image:
    linear-gradient(#f71f3d1a 1px, transparent 1px),
    linear-gradient(90deg, #f71f3d1a 1px, transparent 1px);
  background-size: 2.25rem 2.25rem;
  transform: rotate(-8deg);
}

.network-grid::before,
.network-grid::after {
  position: absolute;
  border: 1px solid #f71f3d38;
  border-radius: 50%;
  content: '';
}

.network-grid::before {
  inset: 19%;
}

.network-grid::after {
  inset: 37%;
}

.hero-network-graph {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.hero-network-connection,
.hero-network-node {
  opacity: 0;
  transition: opacity 1950ms ease;
}

.hero-network-connection.is-visible,
.hero-network-node.is-visible {
  opacity: 1;
}

.hero-network-line {
  fill: none;
  stroke: #f71f3d52;
  stroke-width: 0.18;
}

.hero-network-pulse {
  fill: none;
  stroke: #f71f3d;
  stroke-width: 0.55;
  stroke-linecap: round;
  stroke-dasharray: 1.4 98.6;
  opacity: 0.38;
  animation: hero-network-pulse 4s linear infinite;
  animation-delay: var(--pulse-delay);
}

.hero-network-node {
  filter: drop-shadow(0 0 0.7rem #f71f3d2b);
}

.hero-network-node > * {
  transform: scale(0.55);
  transform-box: fill-box;
  transform-origin: center;
  transition: transform 1950ms ease;
}

.hero-network-node.is-visible > * {
  transform: scale(1);
}

.hero-network-node-halo {
  fill: #f71f3d12;
  stroke: #f71f3d59;
  stroke-width: 0.3;
}

.hero-network-node-core {
  fill: #f71f3d;
  stroke: #fff;
  stroke-width: 0.24;
}

.hero-network-node image {
  pointer-events: none;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: max(1.25rem, calc((100vw - 88rem) / 2));
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #62626a;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-line {
  position: relative;
  width: 4rem;
  height: 1px;
  overflow: hidden;
  background: #17171b33;
}

.scroll-line::after {
  position: absolute;
  inset: 0;
  background: #f71f3d;
  content: '';
  animation: scroll-line 2s ease-in-out infinite;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(18rem, 0.55fr);
  align-items: end;
  gap: clamp(2rem, 8vw, 9rem);
  margin-bottom: clamp(3.5rem, 3vw, 6rem);
}

.section-heading h2 {
  max-width: 10ch;
  margin-bottom: 0;
}

.section-heading > p,
.network-summary > p {
  margin-bottom: 0.45rem;
  color: #5a5a62;
  font-size: 1.12rem;
  line-height: 1.65;
}

.apps > .section-heading {
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  gap: clamp(2rem, 4vw, 3.5rem);
}

.apps > .section-heading h2 {
  max-width: none;
}

.app-filters {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.4rem;
}

.app-filters button {
  min-height: 2.75rem;
  padding: 0.6rem 1rem;
  border: 1px solid #17171b2b;
  border-radius: 999px;
  background: transparent;
  color: #5a5a62;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
  transition:
    background-color 180ms ease,
    color 180ms ease;
}

.app-filters button:hover,
.app-filters button.is-active {
  background: #17171b;
  color: #fff;
}

.app-swipe-cue {
  display: none;
}

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

.app-card {
  position: relative;
  display: flex;
  min-height: 22rem;
  grid-column: span 4;
  flex-direction: column;
  overflow: hidden;
  padding: 1.4rem;
  border-radius: 0.8rem;
  background: #25252b;
  color: #fff;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.app-card[hidden] {
  display: none;
}

.app-card::before {
  position: absolute;
  top: -45%;
  right: -25%;
  width: 80%;
  aspect-ratio: 1;
  border: 1px solid #fff2;
  border-radius: 50%;
  box-shadow:
    0 0 0 2.5rem #fff08,
    0 0 0 5rem #fff05;
  content: '';
  transition: transform 400ms ease;
}

.app-card:hover {
  z-index: 2;
  box-shadow: 0 1.5rem 4rem #17171b24;
  transform: translateY(-0.45rem);
}

.app-card:hover::before {
  transform: scale(1.15) translate(-4%, 6%);
}

.app-featured {
  min-height: 22rem;
}

.app-redsquare,
.app-arcade,
.app-chat {
  grid-column: span 4;
}

.app-talk,
.app-stack,
.app-vault,
.app-store {
  grid-column: span 3;
}

.app-redsquare {
  background:
    radial-gradient(circle at 85% 10%, #ff7b987d, transparent 38%),
    linear-gradient(145deg, #a52b79, #571950);
}

.app-arcade {
  background:
    radial-gradient(circle at 85% 10%, #ff8b5e7d, transparent 38%),
    linear-gradient(145deg, #f04045, #8d183c);
}

.app-chat {
  background: linear-gradient(145deg, #c93c86, #742668);
}

.app-talk {
  background: linear-gradient(145deg, #167a77, #174255);
}

.app-stack {
  background: linear-gradient(145deg, #254da5, #17275f);
}

.app-vault {
  background: linear-gradient(145deg, #7651aa, #382463);
}

.app-store {
  background: linear-gradient(145deg, #3a8c70, #1e564d);
}

.app-number {
  position: relative;
  z-index: 1;
  color: #fff9;
  font-family: monospace;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.app-icon {
  position: absolute;
  top: 1.15rem;
  right: 1.15rem;
  display: grid;
  width: 7rem;
  height: 7rem;
  place-items: center;
  border: 1px solid #fff4;
  border-radius: 50%;
  background: #fff0;
}

.app-featured .app-icon {
  width: 8.5rem;
  height: 8.5rem;
}

.app-icon img {
  width: 75%;
  height: 75%;
  object-fit: contain;
}

.app-copy {
  position: relative;
  z-index: 1;
  max-width: 29rem;
  margin-top: auto;
}

.app-kicker {
  margin-bottom: 0.75rem;
  color: #fff9;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.app-card h3 {
  margin-bottom: 0.75rem;
}

.app-card .app-copy > p:last-child {
  max-width: 30rem;
  margin-bottom: 0;
  color: #fffc;
  line-height: 1.55;
}

.app-open {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid #fff3;
  font-size: 0.82rem;
  font-weight: 600;
}

.live-proof {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(32rem, 1.2fr);
  gap: clamp(3rem, 8vw, 9rem);
  padding: clamp(6rem, 11vw, 10rem) max(1.25rem, calc((100vw - 88rem) / 2));
  background: radial-gradient(circle at 20% 10%, #ff8c763d, transparent 30%), #f71f3d;
  color: #fff;
}

.proof-intro {
  align-self: center;
}

.proof-intro h2 {
  max-width: 9ch;
  margin-bottom: 1.8rem;
  font-size: clamp(3.2rem, 5.4vw, 6.3rem);
}

.proof-intro > p:not(.eyebrow, .privacy-note) {
  max-width: 34rem;
  margin-bottom: 2rem;
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.65;
}

.privacy-note {
  max-width: 26rem;
  margin: 1.2rem 0 0;
  color: #fffc;
  font-size: 0.78rem;
}

.network-dashboard {
  display: grid;
  height: 43rem;
  grid-template-rows: auto minmax(0, 1fr);
  align-self: center;
  overflow: hidden;
  border: 1px solid #ffffff2e;
  border-radius: 0.7rem;
  background: #19191f;
  box-shadow: 0 2.5rem 7rem #75091e52;
}

.dashboard-console-body {
  display: flex;
  min-height: 0;
  flex-direction: column;
  overflow: hidden;
}

.dashboard-block,
.dashboard-identity {
  flex: none;
}

.dashboard-bar,
.code-bar {
  display: grid;
  min-height: 3.4rem;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 1rem;
  border-bottom: 1px solid #fff1;
  background: #24242b;
}

.dashboard-bar {
  color: inherit;
  font: inherit;
}

.dashboard-window-controls,
.code-bar > div {
  display: flex;
  gap: 0.4rem;
}

.dashboard-window-controls span,
.code-bar > div span {
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 50%;
  background: #696970;
}

.dashboard-window-controls span:first-child,
.code-bar > div span:first-child {
  background: #f26464;
}

.dashboard-window-controls span:nth-child(2),
.code-bar > div span:nth-child(2) {
  background: #e9b84a;
}

.dashboard-window-controls span:last-child,
.code-bar > div span:last-child {
  background: #55bd6d;
}

.dashboard-console-title,
.code-bar p {
  margin: 0;
  color: #a6a6ad;
  font-family: monospace;
  font-size: 0.7rem;
  text-align: center;
}

.dashboard-state {
  justify-self: end;
  color: #e9b84a;
  font-family: monospace;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}

.dashboard-state.is-live {
  color: #55bd6d;
}

.dashboard-state.is-error {
  color: #f26464;
}

.pace {
  pointer-events: none;
  user-select: none;
}

.pace .pace-progress {
  position: fixed;
  z-index: 9999;
  top: 0;
  right: 100%;
  width: 100%;
  height: 0.22rem;
  border-radius: 0 999px 999px 0;
  background: linear-gradient(90deg, #55bd6d, #9ce8ad);
  box-shadow:
    0 0 0.8rem #55bd6d,
    0 0 1.8rem #55bd6d88;
}

.pace-inactive {
  display: none;
}

.dashboard-block {
  display: grid;
  grid-template-columns: auto repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem;
  border-bottom: 1px solid #fff1;
}

.dashboard-block[hidden] {
  display: none;
}

.dashboard-block > div:not(.block-pulse) {
  min-width: 0;
}

.dashboard-block small,
.dashboard-block strong {
  display: block;
}

.dashboard-block small,
.dashboard-identity small,
.dashboard-peers span,
.dashboard-updated {
  color: #929299;
  font-family: monospace;
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.dashboard-block strong {
  margin-top: 0.35rem;
  color: #fff;
  font-family: 'Courier New', Courier, monospace;
  font-size: clamp(1.05rem, 1.8vw, 1.5rem);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.06em;
}

.dashboard-block [data-last-block] {
  display: inline-block;
  min-width: 3ch;
  white-space: nowrap;
}

.block-pulse {
  position: relative;
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border: 1px solid #55bd6d55;
  border-radius: 50%;
}

.block-pulse span {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: #55bd6d;
  box-shadow: 0 0 1rem #55bd6d;
}

.block-pulse.is-new-block::before {
  position: absolute;
  inset: 0;
  border: 1px solid #55bd6d;
  border-radius: inherit;
  content: '';
  animation: block-pulse 1s ease-out;
}

.dashboard-identity {
  padding: 1.35rem 1.5rem 1.5rem;
  border-bottom: 1px solid #fff1;
}

.dashboard-browser-key-heading,
.join-progress-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.dashboard-browser-key small {
  display: block;
}

.browser-node-state {
  color: #929299;
  font-family: monospace;
  font-size: 0.66rem;
  letter-spacing: 0.08em;
}

.browser-node-state.is-live {
  color: #55bd6d;
}

.browser-node-state.is-busy {
  color: #e9b84a;
}

.browser-node-state.is-error {
  color: #f26464;
}

.dashboard-browser-key {
  padding: 0.85rem 1rem;
  border: 1px solid #fff1;
  border-radius: 0.35rem;
  background: #fff05;
}

.dashboard-browser-key code {
  display: block;
  min-height: 1.15em;
  margin-top: 0.42rem;
  color: #e6e6e9;
  font-size: 0.76rem;
  overflow-wrap: anywhere;
}

.dashboard-join-progress[hidden] {
  display: none;
}

.dashboard-join-progress {
  margin-top: 1rem;
}

.join-progress-heading strong {
  flex: 1;
  color: #e6e6e9;
  font-size: 0.76rem;
}

.join-progress-heading > span:last-child {
  color: #929299;
  font: 0.68rem monospace;
}

.join-spinner {
  width: 0.7rem;
  height: 0.7rem;
  border: 1px solid #55bd6d55;
  border-top-color: #55bd6d;
  border-radius: 50%;
  animation: join-spin 0.8s linear infinite;
}

.dashboard-join-progress.is-complete .join-spinner {
  border-color: #55bd6d;
  background: #55bd6d;
  box-shadow: 0 0 0.6rem #55bd6d;
  animation: none;
}

.dashboard-join-progress.is-complete .join-progress-heading,
.dashboard-join-progress.is-complete .join-progress-track {
  display: none;
}

.dashboard-join-progress.is-complete .join-console-heading {
  margin-top: 0;
}

.dashboard-join-progress.is-error .join-spinner {
  border-color: #f26464;
  background: #f26464;
  animation: none;
}

.join-progress-track {
  height: 0.25rem;
  margin-top: 0.75rem;
  overflow: hidden;
  border-radius: 999px;
  background: #fff1;
}

.join-progress-track span {
  display: block;
  width: 10%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #3a984e, #75d389);
  box-shadow: 0 0 0.7rem #55bd6d88;
  transition: width 450ms ease;
}

.join-console-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.9rem;
  color: #929299;
  font: 0.62rem monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.join-console-heading span:last-child {
  color: #55bd6d;
}

.join-log {
  height: calc((3 * 1.55em) + 1.5rem + 2px);
  margin: 0.4rem 0 0;
  padding: 0.75rem;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: none;
  border: 1px solid #fff1;
  border-radius: 0.35rem;
  background: #121217;
  color: #9bb8a2;
  font: 0.66rem/1.55 monospace;
  overflow-wrap: anywhere;
  white-space: pre-wrap;
}

.join-log::-webkit-scrollbar {
  display: none;
}

.dashboard-peers {
  display: flex;
  min-height: 0;
  flex: 1;
  flex-direction: column;
  padding: 1.25rem 1.5rem 0;
}

.dashboard-peers > div,
.dashboard-peers li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.dashboard-peers > div > strong {
  font-size: 0.86rem;
}

.dashboard-peers > div {
  flex: none;
}

.dashboard-peers ul {
  --peer-row-gap: 0.5rem;
  --peer-row-height: 2.4rem;

  display: grid;
  min-height: 0;
  flex: 1;
  align-content: start;
  grid-auto-rows: var(--peer-row-height);
  gap: var(--peer-row-gap);
  margin: 0.9rem 0 0;
  padding: 0;
  overflow-y: auto;
  list-style: none;
}

.dashboard-peers li {
  min-height: var(--peer-row-height);
  padding: 0.65rem 0.75rem;
  border: 1px solid #fff1;
  border-radius: 0.35rem;
  background: #fff05;
  color: #d5d5da;
  font-family: monospace;
  font-size: 0.7rem;
}

.dashboard-peers li > span:first-child {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: none;
  white-space: nowrap;
}

.dashboard-peers .peer-key,
.dashboard-peers .peer-address {
  letter-spacing: normal;
  text-transform: none;
}

.dashboard-peers .peer-key {
  color: #d5d5da;
}

.dashboard-peers .peer-address {
  color: #929299;
}

.dashboard-peers li.is-placeholder {
  color: #929299;
}

.dashboard-updated {
  flex: none;
  margin: 1rem 1.5rem 1.25rem;
  text-align: right;
  text-transform: none;
}

@keyframes join-spin {
  to {
    transform: rotate(1turn);
  }
}

.section-dark {
  background: #1c1c22;
  color: #fff;
}

.section-heading-light > p,
.section-heading-light .network-summary > p {
  color: #b9b9bf;
}

.network-summary {
  align-self: end;
}

.network-see-how {
  min-height: 3.25rem;
  margin-top: 1.25rem;
  padding: 0.8rem 1.35rem;
  border-color: #ffffff4d;
  background: #ffffff0d;
  color: #fff;
  cursor: pointer;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.network-see-how:hover {
  border-color: #ff8c7d;
  background: #ffffff17;
}

.traffic-dialog {
  width: 100vw;
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: clamp(1rem, 2.5vw, 2.5rem);
  overflow: hidden;
  border: 0;
  background: rgba(18, 18, 23, 0.72);
  color: #fff;
  opacity: 0;
  -webkit-backdrop-filter: blur(22px) saturate(125%);
  backdrop-filter: blur(22px) saturate(125%);
  transition:
    display 240ms allow-discrete,
    overlay 240ms allow-discrete,
    opacity 240ms ease;
}

.traffic-dialog[open] {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: clamp(1rem, 2vw, 2rem);
  opacity: 1;
}

@starting-style {
  .traffic-dialog[open] {
    opacity: 0;
  }
}

.traffic-dialog::backdrop {
  background: rgba(10, 10, 14, 0.18);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.traffic-dialog-bar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  padding: 0.25rem;
}

.traffic-dialog-bar span {
  display: block;
  margin-bottom: 0.55rem;
  color: #ff9b8e;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.traffic-dialog-bar h2 {
  max-width: none;
  margin: 0;
  font-size: clamp(1.35rem, 2.2vw, 2.25rem);
  letter-spacing: -0.035em;
}

.traffic-dialog-close {
  position: relative;
  display: grid;
  width: 3.25rem;
  height: 3.25rem;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid #ffffff4d;
  border-radius: 50%;
  background: #ffffff12;
  color: #fff;
  cursor: pointer;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease;
}

.traffic-dialog-close:hover {
  border-color: #ff8c7d;
  background: #ffffff20;
  transform: rotate(4deg);
}

.traffic-dialog-close span {
  position: absolute;
  width: 1.15rem;
  height: 1px;
  margin: 0;
  background: currentColor;
}

.traffic-dialog-close span:first-child {
  transform: rotate(45deg);
}

.traffic-dialog-close span:last-child {
  transform: rotate(-45deg);
}

.traffic-animation-frame {
  min-height: 0;
  overflow: hidden;
  border: 0;
  border-radius: 2.25rem;
  background: transparent;
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.traffic-animation-frame [data-traffic-animation],
.traffic-animation-frame svg {
  display: block;
  width: 100%;
  height: 100%;
  background: transparent;
}

.traffic-animation-frame p {
  margin: 2rem;
}

.traffic-animation-frame a {
  border-bottom: 1px solid currentColor;
}

.route-dialog {
  display: none;
}

.network-story {
  display: grid;
  grid-template-columns: minmax(32rem, 1.2fr) minmax(24rem, 0.8fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 8rem);
}

@media (min-width: 1101px) {
  .network > .section-heading {
    grid-template-columns: minmax(32rem, 1.2fr) minmax(24rem, 0.8fr);
    gap: clamp(3rem, 7vw, 8rem);
  }
}

.route-visual {
  position: relative;
  min-height: 38rem;
  border: 1px solid #fff1;
  background:
    linear-gradient(#ffffff08 1px, transparent 1px),
    linear-gradient(90deg, #ffffff08 1px, transparent 1px);
  background-size: 2.4rem 2.4rem;
}

.route-visual::before {
  position: absolute;
  inset: 1rem;
  border: 1px solid #fff0d;
  content: '';
}

.route-visual svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.route-faint,
.route-main {
  fill: none;
}

.route-faint {
  stroke: #fff1;
  stroke-width: 1;
}

.route-main {
  stroke: url('#route-gradient');
  stroke-dasharray: 6 10;
  stroke-width: 2;
  animation: route-dashes 1.2s linear infinite;
}

.route-packet {
  fill: #ff8c7d;
  opacity: 0;
  stroke: #ffd3c9;
  stroke-width: 2;
  filter: drop-shadow(0 0 5px #ff8c7d) drop-shadow(0 0 12px #f71f3d);
}

.route-node {
  position: absolute;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0 0.8rem;
  transform: translate(-1.75rem, -50%);
}

.route-node strong,
.route-node small {
  display: block;
}

.route-node strong {
  font-size: 0.83rem;
}

.route-node small {
  grid-column: 2;
  color: #8d8d96;
  font-size: 0.68rem;
}

.route-icon {
  display: grid;
  width: 3.5rem;
  height: 3.5rem;
  grid-row: span 2;
  place-items: center;
  border: 1px solid #fff3;
  border-radius: 50%;
  background: #1c1c22;
  color: #ff8c7d;
  font-family: monospace;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.route-browser {
  top: 50%;
  left: 12.5%;
}

.route-peer-one {
  top: 26.1%;
  left: 32.2%;
}

.route-peer-two {
  top: 74.09%;
  left: 68.59%;
}

.route-destination {
  top: 50%;
  right: 12.5%;
  grid-template-columns: 1fr auto;
  text-align: right;
  transform: translate(1.75rem, -50%);
}

.route-destination .route-icon {
  grid-column: 2;
}

.route-destination strong,
.route-destination small {
  grid-column: 1;
}

.route-destination strong {
  grid-row: 1;
}

.route-destination small {
  grid-row: 2;
}

.network-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.network-steps li {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-top: 1px solid #fff2;
}

.network-steps li:last-child {
  border-bottom: 1px solid #fff2;
}

.network-steps > li > span {
  color: #ff8c7d;
  font-family: monospace;
  font-size: 0.72rem;
}

.network-steps h3 {
  margin-bottom: 0.65rem;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.network-steps p {
  margin-bottom: 0;
  color: #a8a8b0;
  font-size: 0.88rem;
  line-height: 1.55;
}

.deep-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid #fff2;
  font-size: 0.78rem;
}

.deep-links > span {
  margin-right: auto;
  color: #777781;
  font-family: monospace;
  text-transform: uppercase;
}

.deep-links a {
  border-bottom: 1px solid #fff3;
}

.ownership-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 5rem;
}

.ownership-intro h2 {
  max-width: none;
  margin-bottom: 0;
}

.ownership-intro > p:last-child {
  align-self: end;
  margin-bottom: 0.4rem;
  color: #5a5a62;
  font-size: 1.1rem;
  line-height: 1.65;
}

.asset-lab {
  display: grid;
  min-height: 39rem;
  grid-template-columns: minmax(14rem, 0.65fr) minmax(20rem, 1.1fr) minmax(15rem, 0.65fr);
  align-items: stretch;
  border: 1px solid #17171b1f;
  background: #eee8df;
}

.asset-picker {
  padding: 2rem;
  border-right: 1px solid #17171b1f;
}

.asset-picker > p {
  margin-bottom: 2rem;
  color: #777780;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.asset-picker button {
  display: grid;
  width: 100%;
  min-height: 4.4rem;
  grid-template-columns: 2.4rem 1fr;
  align-items: center;
  padding: 0;
  border-top: 1px solid #17171b1f;
  background: transparent;
  color: #777780;
  cursor: pointer;
  text-align: left;
}

.asset-picker button:last-child {
  border-bottom: 1px solid #17171b1f;
}

.asset-picker button span {
  font-family: monospace;
  font-size: 0.66rem;
}

.asset-picker button:hover,
.asset-picker button.is-active {
  color: #f71f3d;
}

.asset-card-wrap {
  display: grid;
  place-items: center;
  padding: 3rem;
  perspective: 900px;
}

.asset-card-wrap > p {
  margin: -2rem 0 0;
  color: #777780;
  font-size: 0.74rem;
  text-align: center;
}

.asset-card {
  display: flex;
  width: min(100%, 21rem);
  aspect-ratio: 0.72;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.6rem;
  border: 1px solid #ffffff80;
  border-radius: 1rem;
  background:
    radial-gradient(circle at 75% 15%, hsl(var(--asset-hue, 348) 95% 68% / 0.75), transparent 35%),
    linear-gradient(145deg, hsl(var(--asset-hue, 348) 80% 55%), #5b1738);
  box-shadow:
    0 2rem 5rem #33101c42,
    inset 0 1px #fff6;
  color: #fff;
  transform: rotateY(-7deg) rotateX(4deg);
  transition:
    background 300ms ease,
    transform 300ms ease;
}

.asset-card:hover {
  transform: rotateY(0) rotateX(0) translateY(-0.3rem);
}

.asset-card-top,
.asset-card-code {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.asset-card-top img {
  width: 2.5rem;
}

.asset-card-top > span,
.asset-card small,
.asset-card-code {
  font-family: monospace;
  font-size: 0.64rem;
  letter-spacing: 0.08em;
}

.asset-card strong {
  display: block;
  margin-top: 0.6rem;
  font-size: clamp(1.55rem, 2.3vw, 2.15rem);
  letter-spacing: -0.05em;
  line-height: 1;
}

.asset-card-code {
  padding-top: 1rem;
  border-top: 1px solid #fff4;
}

.asset-lifecycle {
  display: flex;
  margin: 0;
  padding: 0;
  border-left: 1px solid #17171b1f;
  flex-direction: column;
  list-style: none;
}

.asset-lifecycle li {
  display: grid;
  min-height: 25%;
  grid-template-columns: 2.5rem 1fr;
  align-content: center;
  gap: 0.3rem;
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid #17171b1f;
  color: #8a8a92;
  transition:
    background-color 220ms ease,
    color 220ms ease;
}

.asset-lifecycle li:last-child {
  border-bottom: 0;
}

.asset-lifecycle li.is-active {
  background: #fff8;
  color: #17171b;
}

.asset-lifecycle li > span {
  grid-row: span 2;
  font-family: monospace;
  font-size: 0.66rem;
}

.asset-lifecycle strong,
.asset-lifecycle small {
  display: block;
}

.asset-lifecycle strong {
  font-size: 0.95rem;
}

.asset-lifecycle small {
  font-size: 0.7rem;
}

.ecosystem-panel {
  display: grid;
  min-height: 48rem;
  grid-template-columns: minmax(0, 0.82fr) minmax(30rem, 1.18fr);
  align-items: center;
  gap: 4rem;
  margin-top: 1rem;
  padding: clamp(2rem, 6vw, 6rem);
  background: radial-gradient(circle at 75% 50%, #f71f3d42, transparent 25%), #1c1c22;
  color: #fff;
}

.ecosystem-copy h3 {
  max-width: 11ch;
  margin-bottom: 1.5rem;
  font-size: clamp(2.6rem, 5vw, 5.5rem);
}

.ecosystem-copy > p:not(.eyebrow) {
  max-width: 37rem;
  color: #b6b6bd;
  line-height: 1.65;
}

.audience-list {
  margin: 2.4rem 0;
  border-top: 1px solid #fff2;
}

.audience-list > div {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid #fff2;
}

.audience-list span {
  font-size: 0.78rem;
  font-weight: 600;
}

.audience-list p {
  margin: 0;
  color: #92929a;
  font-size: 0.78rem;
}

.ecosystem-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.app-orbit {
  position: relative;
  width: min(100%, 39rem);
  aspect-ratio: 1;
  justify-self: center;
}

.orbit-ring {
  position: absolute;
  border: 1px solid #fff2;
  border-radius: 50%;
}

.app-orbit .ring-one {
  inset: 8%;
}

.app-orbit .ring-two {
  inset: 27%;
  border-style: dashed;
  animation: ring-rotate 22s linear infinite;
}

.wallet-core {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 9rem;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid #fff4;
  border-radius: 50%;
  background: #f71f3d;
  box-shadow:
    0 0 0 1.5rem #f71f3d17,
    0 0 5rem #f71f3d66;
  transform: translate(-50%, -50%);
}

.wallet-core img {
  width: 2.5rem;
}

.wallet-core strong,
.wallet-core span {
  display: block;
  margin-top: -1rem;
  text-align: center;
}

.wallet-core strong {
  font-size: 0.8rem;
}

.wallet-core span {
  margin-top: -1.8rem;
  color: #fffc;
  font-size: 0.6rem;
}

.orbit-app {
  position: absolute;
  display: grid;
  width: 5.2rem;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid #fff3;
  border-radius: 50%;
  background: #27272e;
  box-shadow: 0 0 0 0.5rem #1c1c22;
}

.orbit-app img {
  width: 42%;
  height: 42%;
  object-fit: contain;
}

.orbit-app span {
  position: absolute;
  top: calc(100% + 0.45rem);
  color: #aaaab2;
  font-size: 0.64rem;
}

.orbit-redsquare {
  top: 2%;
  left: 42%;
}

.orbit-arcade {
  top: 24%;
  right: 1%;
}

.orbit-chat {
  right: 10%;
  bottom: 10%;
}

.orbit-stack {
  bottom: 0;
  left: 32%;
}

.orbit-store {
  bottom: 21%;
  left: 1%;
}

.orbit-talk {
  top: 17%;
  left: 5%;
}

.developer-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(32rem, 1.18fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 10rem);
  margin-bottom: 6rem;
}

.developer-copy h2 {
  max-width: 9ch;
  margin-bottom: 1.6rem;
  font-size: clamp(3.5rem, 6vw, 7rem);
}

.developer-copy > p:not(.eyebrow) {
  max-width: 35rem;
  color: #aaaab2;
  font-size: 1.08rem;
  line-height: 1.65;
}

.developer-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.code-window {
  overflow: hidden;
  border: 1px solid #fff2;
  border-radius: 0.7rem;
  background: #111115;
  box-shadow: 0 2.5rem 7rem #0006;
}

.code-bar {
  grid-template-columns: 1fr auto 1fr;
}

.code-bar button {
  justify-self: end;
  padding: 0.3rem 0;
  border-bottom: 1px solid #fff4;
  background: transparent;
  color: #b9b9c0;
  cursor: pointer;
  font-family: monospace;
  font-size: 0.65rem;
}

.code-window pre {
  min-height: 23rem;
  margin: 0;
  padding: clamp(1.5rem, 4vw, 3rem);
  overflow-x: auto;
  color: #d8d8dd;
  font-family: monospace;
  font-size: clamp(0.78rem, 1.1vw, 1rem);
  line-height: 1.9;
  tab-size: 2;
}

.code-keyword {
  color: #ff7789;
}

.code-prop {
  color: #8fc7ff;
}

.code-string {
  color: #ffd08c;
}

.code-status {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.4rem;
  border-top: 1px solid #fff1;
  color: #8f8f97;
  font-family: monospace;
  font-size: 0.68rem;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid #fff2;
  border-left: 1px solid #fff2;
}

.capability-grid a {
  display: flex;
  min-height: 20rem;
  flex-direction: column;
  padding: 1.5rem;
  border-right: 1px solid #fff2;
  border-bottom: 1px solid #fff2;
  transition:
    background-color 180ms ease,
    color 180ms ease;
}

.capability-grid a:hover {
  background: #f71f3d;
}

.capability-grid > a > span {
  color: #777780;
  font-family: monospace;
  font-size: 0.7rem;
}

.capability-grid h3 {
  margin: auto 0 1rem;
  font-size: 1.7rem;
}

.capability-grid p {
  min-height: 4.5rem;
  margin-bottom: 2rem;
  color: #9999a1;
  font-size: 0.82rem;
  line-height: 1.55;
}

.capability-grid a:hover p,
.capability-grid a:hover > span {
  color: #fffd;
}

.capability-grid strong {
  font-size: 0.76rem;
}

.evidence {
  display: grid;
  grid-template-columns: minmax(20rem, 0.7fr) minmax(30rem, 1.3fr);
  gap: clamp(3rem, 9vw, 10rem);
}

.evidence-lead {
  position: sticky;
  top: 8rem;
  align-self: start;
}

.evidence-lead h2 {
  max-width: 7ch;
  margin-bottom: 1.5rem;
}

.evidence-lead > p:not(.eyebrow) {
  max-width: 31rem;
  color: #5a5a62;
  line-height: 1.7;
}

.evidence-links {
  border-top: 1px solid #17171b26;
}

.evidence-links a {
  display: grid;
  min-height: 11rem;
  grid-template-columns: 8rem 1fr auto;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid #17171b26;
  transition:
    color 180ms ease,
    padding 180ms ease;
}

.evidence-links a:hover {
  padding: 0 1rem;
  color: #f71f3d;
}

.evidence-index {
  color: #8b8b92;
  font-family: monospace;
  font-size: 0.68rem;
}

.evidence-links strong {
  font-size: clamp(1.3rem, 2vw, 2rem);
  letter-spacing: -0.03em;
}

.evidence-links a > span:last-child {
  font-size: 0.75rem;
  font-weight: 600;
}

.community {
  position: relative;
  display: grid;
  min-height: 58rem;
  place-items: center;
  overflow: hidden;
  padding: 7rem 1.25rem;
  background:
    radial-gradient(circle at 20% 20%, #ff8d6f85, transparent 28%),
    radial-gradient(circle at 80% 80%, #f7009b66, transparent 33%),
    linear-gradient(135deg, #f71f3d, #8e164d);
  color: #fff;
}

.community::after {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(#fff0b 1px, transparent 1px),
    linear-gradient(90deg, #fff0b 1px, transparent 1px);
  background-size: 4rem 4rem;
  content: '';
  mask-image: linear-gradient(to bottom, transparent, #000 35%, #000 65%, transparent);
}

.community-backdrop {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  color: #fff0a;
  font-size: clamp(7rem, 17vw, 18rem);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.68;
  pointer-events: none;
  white-space: nowrap;
}

.community-backdrop span:nth-child(even) {
  align-self: flex-end;
  transform: translateX(8%);
}

.community-content {
  position: relative;
  z-index: 2;
  width: min(100%, 72rem);
  padding: clamp(2rem, 5vw, 5rem);
  border: 1px solid #fff3;
  background: #30121b66;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.community-content h2 {
  max-width: 10ch;
  margin-bottom: 1.5rem;
}

.community-content > p:not(.eyebrow) {
  max-width: 40rem;
  margin-bottom: 3rem;
  color: #fffd;
  font-size: 1.08rem;
  line-height: 1.65;
}

.community-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid #fff3;
  border-left: 1px solid #fff3;
}

.community-links a {
  display: grid;
  min-height: 9rem;
  grid-template-columns: 1fr auto;
  align-content: center;
  gap: 0.5rem;
  padding: 1.2rem;
  border-right: 1px solid #fff3;
  border-bottom: 1px solid #fff3;
  transition: background-color 180ms ease;
}

.community-links a:hover {
  background: #fff1;
}

.community-links span {
  grid-column: 1 / -1;
  color: #fffb;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.community-links strong {
  font-size: 1rem;
}

.community-links b {
  font-weight: 400;
}

.final-cta {
  padding: clamp(6rem, 10vw, 9rem) max(1.25rem, calc((100vw - 88rem) / 2));
  background: #f7f3ed;
}

.final-cta > div:first-child {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 4rem;
}

.final-cta h2 {
  max-width: 12ch;
  margin-bottom: 0;
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #17171b2b;
  border-left: 1px solid #17171b2b;
}

.path-grid a {
  position: relative;
  display: flex;
  min-height: 25rem;
  flex-direction: column;
  padding: 1.6rem;
  border-right: 1px solid #17171b2b;
  border-bottom: 1px solid #17171b2b;
  transition:
    background-color 200ms ease,
    color 200ms ease;
}

.path-grid a:hover {
  background: #f71f3d;
  color: #fff;
}

.path-grid span {
  font-family: monospace;
  font-size: 0.7rem;
}

.path-grid strong {
  margin-top: auto;
  font-size: clamp(2rem, 3vw, 3.4rem);
  letter-spacing: -0.05em;
}

.path-grid p {
  max-width: 18rem;
  min-height: 3rem;
  margin: 1rem 0 0;
  color: #65656d;
  font-size: 0.82rem;
}

.path-grid a:hover p {
  color: #fffd;
}

.path-grid b {
  position: absolute;
  right: 1.6rem;
  bottom: 1.6rem;
  font-size: 1.3rem;
  font-weight: 400;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  align-items: end;
  gap: 2rem;
  padding: 4rem max(1.25rem, calc((100vw - 88rem) / 2));
  background: #17171b;
  color: #fff;
}

.footer-brand {
  width: 8rem;
  filter: invert(1);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem 1.5rem;
}

.footer-links a,
.footer-legal {
  color: #a5a5ad;
  font-size: 0.72rem;
}

.footer-links a:hover,
.footer-legal a:hover {
  color: #fff;
}

.footer-legal {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.4rem;
}

.mobile-app-dock {
  display: none;
}

.has-js .reveal {
  animation: reveal-up 700ms both;
}

.has-js .hero .reveal:nth-child(2) {
  animation-delay: 80ms;
}

.has-js .hero .reveal:nth-child(3) {
  animation-delay: 160ms;
}

.has-js .hero .reveal:nth-child(4) {
  animation-delay: 240ms;
}

.has-js .hero .reveal:nth-child(5) {
  animation-delay: 320ms;
}

.has-js [data-observe] {
  opacity: 0;
  transform: translateY(2rem);
  transition:
    opacity 650ms ease,
    transform 650ms ease;
}

.has-js [data-observe].is-visible {
  opacity: 1;
  transform: none;
}

@keyframes scroll-line {
  0% {
    transform: translateX(-100%);
  }
  50%,
  100% {
    transform: translateX(100%);
  }
}

@keyframes hero-network-pulse {
  to {
    stroke-dashoffset: -100;
  }
}

@keyframes route-dashes {
  to {
    stroke-dashoffset: -16;
  }
}

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

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(1.5rem);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes block-pulse {
  from {
    opacity: 0.9;
    transform: scale(0.75);
  }
  to {
    opacity: 0;
    transform: scale(1.75);
  }
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: minmax(7rem, 1fr) auto minmax(7rem, 1fr);
  }

  .header-link {
    display: none;
  }

  .desktop-nav {
    gap: 1.1rem;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(24rem, 0.8fr);
  }

  .hero-network {
    width: min(44vw, 38rem);
  }

  .network-story,
  .developer-layout {
    grid-template-columns: 1fr;
  }

  .route-visual {
    width: 100%;
  }

  .developer-copy {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 3rem;
  }

  .developer-copy .eyebrow {
    grid-column: 1 / -1;
  }

  .developer-copy h2 {
    grid-row: span 3;
  }

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

@media (max-width: 820px) {
  html {
    scroll-padding-top: 4.75rem;
  }

  body.websitex {
    --mobile-gutter: 1.25rem;
    --websitex-site-header-height: 4.75rem;
  }

  .section-shell {
    padding: 4.75rem max(var(--mobile-gutter), env(safe-area-inset-right)) 4.75rem
      max(var(--mobile-gutter), env(safe-area-inset-left));
  }

  .site-header {
    min-height: 4.75rem;
    grid-template-columns: 1fr auto;
    padding-right: max(var(--mobile-gutter), env(safe-area-inset-right));
    padding-left: max(var(--mobile-gutter), env(safe-area-inset-left));
  }

  .desktop-nav,
  .header-actions .button {
    display: none;
  }

  .brand {
    width: 6.5rem;
  }

  .menu-toggle {
    display: grid;
  }

  .mobile-nav {
    display: flex;
    padding: max(6rem, calc(5rem + env(safe-area-inset-top)))
      max(var(--mobile-gutter), env(safe-area-inset-right)) max(2rem, env(safe-area-inset-bottom))
      max(var(--mobile-gutter), env(safe-area-inset-left));
    overflow-y: auto;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 6.25rem max(var(--mobile-gutter), env(safe-area-inset-right)) 4.25rem
      max(var(--mobile-gutter), env(safe-area-inset-left));
  }

  .hero-copy {
    z-index: 2;
    isolation: isolate;
    padding-bottom: 1rem;
  }

  .hero-copy::before {
    position: absolute;
    z-index: -1;
    inset: -1.5rem -2rem;
    border-radius: 2rem;
    background: #f7f3edde;
    content: '';
    pointer-events: none;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    -webkit-mask-image: radial-gradient(ellipse at 30% 42%, #000 0 54%, transparent 88%);
    mask-image: radial-gradient(ellipse at 30% 42%, #000 0 54%, transparent 88%);
  }

  .hero h1 {
    font-size: clamp(4rem, 16vw, 7rem);
  }

  .hero-network {
    position: absolute;
    z-index: 1;
    top: 7.5rem;
    left: 62%;
    width: min(145vw, 38rem);
    pointer-events: none;
    transform: translateX(-50%);
  }

  .hero-scroll {
    display: none;
  }

  .section-heading,
  .ownership-intro,
  .live-proof,
  .evidence {
    grid-template-columns: 1fr;
  }

  .ownership-intro {
    margin-bottom: 3.5rem;
  }

  .section-heading {
    align-items: start;
    gap: 1.5rem;
    margin-bottom: 3rem;
  }

  .section-heading h2 {
    max-width: 12ch;
  }

  .has-js .network-story > .route-visual {
    display: none;
  }

  .route-dialog {
    width: 100vw;
    max-width: none;
    height: 100dvh;
    max-height: none;
    margin: 0;
    padding: max(1rem, env(safe-area-inset-top)) max(1rem, env(safe-area-inset-right))
      max(1rem, env(safe-area-inset-bottom)) max(1rem, env(safe-area-inset-left));
    overflow: hidden;
    border: 0;
    background: #121217f5;
    color: #fff;
  }

  .route-dialog[open] {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    gap: 1rem;
  }

  .route-dialog::backdrop {
    background: #0a0a0e;
  }

  .route-dialog-content {
    display: grid;
    min-height: 0;
    place-items: center;
  }

  .route-dialog .route-visual {
    display: block;
    width: min(100%, 52rem);
    min-height: 0;
    aspect-ratio: 800 / 620;
    margin: 0;
  }

  .app-grid {
    grid-template-columns: none;
    grid-auto-columns: min(88vw, 27rem);
    grid-auto-flow: column;
    gap: 0.75rem;
    margin-right: calc(-1 * var(--mobile-gutter));
    padding-right: var(--mobile-gutter);
    overflow-x: auto;
    scroll-padding-left: 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .app-swipe-cue {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
    margin: -0.35rem 0 0.9rem;
    color: #777780;
    font-family: monospace;
    font-size: 0.68rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  .app-grid::-webkit-scrollbar {
    display: none;
  }

  .app-card,
  .app-featured,
  .app-vault,
  .app-store {
    min-height: 21rem;
    grid-column: auto;
    scroll-snap-align: start;
  }

  .live-proof {
    gap: 2.5rem;
    padding: 4.75rem max(var(--mobile-gutter), env(safe-area-inset-right)) 4.75rem
      max(var(--mobile-gutter), env(safe-area-inset-left));
  }

  .proof-intro h2 {
    max-width: 11ch;
  }

  .network-dashboard {
    height: 38rem;
    min-width: 0;
  }

  .asset-lab {
    grid-template-columns: 1fr;
  }

  .asset-picker {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 1.25rem;
    border-right: 0;
    border-bottom: 1px solid #17171b1f;
  }

  .asset-picker > p {
    grid-column: 1 / -1;
  }

  .asset-picker button:nth-of-type(odd) {
    border-right: 1px solid #17171b1f;
  }

  .asset-card-wrap {
    min-height: 30rem;
    padding: 1.75rem;
  }

  .asset-card {
    width: min(84%, 19rem);
  }

  .asset-lifecycle {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid #17171b1f;
    border-left: 0;
  }

  .asset-lifecycle li {
    min-height: 7rem;
    grid-template-columns: 1fr;
    padding: 1rem;
    border-right: 1px solid #17171b1f;
  }

  .asset-lifecycle li > span {
    grid-row: auto;
  }

  .asset-lifecycle small {
    display: none;
  }

  .ecosystem-panel {
    min-height: auto;
    grid-template-columns: 1fr;
    row-gap: 0;
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .ecosystem-copy {
    display: contents;
  }

  .ecosystem-copy > .eyebrow {
    order: 1;
  }

  .ecosystem-copy > h3 {
    order: 2;
  }

  .ecosystem-copy > p:not(.eyebrow) {
    order: 3;
  }

  .app-orbit {
    width: min(100%, 34rem);
    order: 4;
    margin-top: 1rem;
  }

  .audience-list {
    order: 5;
  }

  .ecosystem-actions {
    order: 6;
  }

  .developer-copy {
    display: block;
  }

  .developer-layout {
    margin-bottom: 4rem;
  }

  .developer-copy h2 {
    max-width: 11ch;
  }

  .evidence-lead {
    position: static;
  }

  .evidence-links a {
    grid-template-columns: 6rem 1fr;
  }

  .evidence-links a > span:last-child {
    grid-column: 2;
  }

  .final-cta > div:first-child {
    display: block;
  }

  .final-cta {
    padding: 4.75rem max(var(--mobile-gutter), env(safe-area-inset-right)) 4.75rem
      max(var(--mobile-gutter), env(safe-area-inset-left));
  }

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

  .path-grid a {
    min-height: 15rem;
  }

  .community {
    min-height: 44rem;
    padding: 4.75rem max(var(--mobile-gutter), env(safe-area-inset-right)) 4.75rem
      max(var(--mobile-gutter), env(safe-area-inset-left));
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
    padding: 3rem max(var(--mobile-gutter), env(safe-area-inset-right))
      max(6rem, calc(4.75rem + env(safe-area-inset-bottom)))
      max(var(--mobile-gutter), env(safe-area-inset-left));
  }

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

  .footer-legal {
    grid-column: 1 / -1;
    align-items: flex-start;
  }

  .mobile-app-dock {
    position: fixed;
    right: max(var(--mobile-gutter), env(safe-area-inset-right));
    bottom: max(1rem, env(safe-area-inset-bottom));
    z-index: 900;
    display: flex;
    min-height: 3.25rem;
    align-items: center;
    gap: 0.7rem;
    padding: 0.75rem 1rem;
    border: 1px solid #fff5;
    border-radius: 999px;
    background: #17171be8;
    box-shadow: 0 0.7rem 2rem #17171b3d;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .mobile-app-dock.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(1rem);
  }
}

@media (max-width: 820px) and (orientation: landscape) {
  .route-dialog .route-visual {
    width: auto;
    max-width: 100%;
    height: 100%;
  }
}

@media (max-width: 560px) {
  body.websitex {
    --mobile-gutter: 1rem;
  }

  h2 {
    font-size: clamp(2.8rem, 14vw, 4.25rem);
  }

  .section-shell {
    padding-top: 4.25rem;
    padding-bottom: 4.25rem;
  }

  .section-heading {
    gap: 1.2rem;
    margin-bottom: 2.75rem;
  }

  .eyebrow {
    margin-bottom: 1rem;
  }

  .hero {
    padding-top: 5.75rem;
    padding-bottom: 3.75rem;
  }

  .hero h1 {
    font-size: clamp(3.7rem, 18vw, 5.7rem);
  }

  .hero-intro {
    font-size: 1rem;
  }

  .hero-intro br,
  .apps > .section-heading > p br {
    display: none;
  }

  .hero-network {
    left: 68%;
    opacity: 0.55;
  }

  .hero-copy::before {
    inset: -1rem -1.25rem;
  }

  .hero-actions,
  .developer-actions,
  .ecosystem-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 0.7rem;
  }

  .hero-actions .text-action,
  .developer-actions .text-action,
  .ecosystem-actions .text-action {
    align-self: flex-start;
  }

  .hero-note {
    flex-wrap: wrap;
    margin-top: 2rem;
  }

  .hero-note-divider {
    display: none;
  }

  .app-filters {
    margin-right: calc(-1 * var(--mobile-gutter));
    padding-right: var(--mobile-gutter);
    overflow-x: auto;
    scrollbar-width: none;
  }

  .app-filters::-webkit-scrollbar {
    display: none;
  }

  .app-grid {
    grid-auto-columns: 100%;
  }

  .app-card,
  .app-featured,
  .app-vault,
  .app-store {
    min-height: 20rem;
  }

  .live-proof {
    gap: 2rem;
    padding-top: 4.25rem;
    padding-bottom: 4.25rem;
  }

  .network-dashboard {
    height: 36rem;
  }

  .dashboard-bar {
    min-height: 3rem;
    padding: 0 0.8rem;
  }

  .dashboard-block {
    grid-template-columns: auto 1fr 1fr;
    gap: 0.8rem;
    padding: 1rem;
  }

  .block-pulse {
    width: 2.4rem;
    height: 2.4rem;
  }

  .dashboard-block strong {
    font-size: 1rem;
  }

  .dashboard-identity {
    padding: 1rem;
  }

  .dashboard-browser-key {
    padding: 0.7rem 0.8rem;
  }

  .dashboard-join-progress {
    margin-top: 0.75rem;
  }

  .dashboard-peers {
    padding: 0.9rem 1rem 0;
  }

  .dashboard-peers ul {
    --peer-row-gap: 0.4rem;
    --peer-row-height: 2.2rem;

    margin-top: 0.65rem;
  }

  .dashboard-peers li {
    padding: 0.5rem 0.65rem;
  }

  .dashboard-updated {
    margin: 0.75rem 1rem 0.9rem;
  }

  .dashboard-bar {
    grid-template-columns: 1fr auto;
  }

  .dashboard-console-title {
    display: none;
  }

  .traffic-dialog,
  .route-dialog {
    padding: max(0.75rem, env(safe-area-inset-top))
      max(var(--mobile-gutter), env(safe-area-inset-right))
      max(0.75rem, env(safe-area-inset-bottom)) max(var(--mobile-gutter), env(safe-area-inset-left));
  }

  .traffic-dialog-bar {
    gap: 0.75rem;
    padding: 0;
  }

  .traffic-dialog-bar h2 {
    font-size: 1.25rem;
    line-height: 1.05;
  }

  .traffic-dialog-close {
    width: 2.75rem;
    height: 2.75rem;
  }

  .route-visual {
    min-height: 30rem;
    margin-right: calc(-1 * var(--mobile-gutter));
    margin-left: calc(-1 * var(--mobile-gutter));
  }

  .route-node {
    gap: 0 0.45rem;
    transform: translate(-1.3rem, -50%);
  }

  .route-icon {
    width: 2.6rem;
    height: 2.6rem;
  }

  .route-node strong {
    font-size: 0.68rem;
  }

  .route-node small {
    display: none;
  }

  .route-destination {
    transform: translate(1.3rem, -50%);
  }

  .deep-links {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.8rem;
  }

  .deep-links > span {
    margin: 0 0 0.4rem;
  }

  .asset-picker {
    grid-template-columns: 1fr;
  }

  .asset-picker button:nth-of-type(odd) {
    border-right: 0;
  }

  .asset-card-wrap {
    min-height: 28rem;
    padding: 1.5rem;
  }

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

  .asset-lifecycle li {
    min-height: 5.5rem;
    padding: 0.8rem;
  }

  .ecosystem-panel {
    margin-right: calc(-1 * var(--mobile-gutter));
    margin-left: calc(-1 * var(--mobile-gutter));
    padding-right: var(--mobile-gutter);
    padding-left: var(--mobile-gutter);
  }

  .audience-list > div {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .app-orbit {
    transform: scale(0.94);
  }

  .wallet-core {
    width: 7.5rem;
  }

  .orbit-app {
    width: 4.15rem;
  }

  .code-window {
    margin-right: calc(-1 * var(--mobile-gutter));
    margin-left: calc(-1 * var(--mobile-gutter));
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .code-window pre {
    min-height: 17rem;
    padding: 1.25rem;
    font-size: 0.72rem;
  }

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

  .capability-grid a {
    min-height: 12.5rem;
  }

  .capability-grid p {
    min-height: 0;
    margin-bottom: 1.5rem;
  }

  .evidence-links a {
    min-height: 9rem;
    grid-template-columns: 1fr;
    align-content: center;
    gap: 0.5rem;
  }

  .evidence-links a > span:last-child {
    grid-column: 1;
  }

  .community {
    min-height: 0;
    padding: 4rem max(var(--mobile-gutter), env(safe-area-inset-right)) 4rem
      max(var(--mobile-gutter), env(safe-area-inset-left));
  }

  .community-content {
    padding: 1.25rem;
  }

  .community-content > p:not(.eyebrow) {
    margin-bottom: 2rem;
  }

  .community-links {
    grid-template-columns: 1fr;
  }

  .community-links a {
    min-height: 6rem;
  }

  .final-cta {
    padding: 4.25rem max(var(--mobile-gutter), env(safe-area-inset-right)) 4.25rem
      max(var(--mobile-gutter), env(safe-area-inset-left));
  }

  .final-cta > div:first-child {
    margin-bottom: 2.5rem;
  }

  .path-grid a {
    min-height: 13rem;
    padding: 1.35rem;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding-top: 3rem;
  }

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

  .footer-legal {
    grid-column: auto;
  }
}

@media (max-width: 380px) {
  h2 {
    font-size: clamp(2.45rem, 13vw, 3.1rem);
  }

  .section-shell {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }

  .brand {
    width: 6rem;
  }

  .mobile-nav-main a {
    min-height: 3.75rem;
    font-size: clamp(1.8rem, 9vw, 2.4rem);
  }

  .hero {
    padding-top: 5.35rem;
    padding-bottom: 3.25rem;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 16.5vw, 4.2rem);
  }

  .hero-intro {
    line-height: 1.5;
  }

  .hero-note {
    gap: 0.45rem 0.65rem;
    font-size: 0.66rem;
  }

  .app-card {
    min-height: 19rem;
    padding: 1.15rem;
  }

  .app-icon,
  .app-featured .app-icon {
    top: 1rem;
    right: 1rem;
    width: 6.25rem;
    height: 6.25rem;
  }

  .network-dashboard {
    height: 34.5rem;
  }

  .dashboard-window-controls {
    gap: 0.3rem;
  }

  .dashboard-window-controls span {
    width: 0.5rem;
    height: 0.5rem;
  }

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

  .dashboard-block .block-pulse {
    display: none;
  }

  .dashboard-block small,
  .dashboard-identity small,
  .dashboard-peers span,
  .dashboard-updated {
    font-size: 0.6rem;
  }

  .dashboard-browser-key code {
    font-size: 0.68rem;
  }

  .dashboard-peers .peer-address {
    display: none;
  }

  .dashboard-peers ul {
    --peer-row-height: 2.1rem;
  }

  .asset-card-wrap {
    min-height: 25rem;
    padding: 1.25rem;
  }

  .asset-lifecycle li {
    min-height: 5rem;
    padding: 0.7rem;
  }

  .asset-lifecycle strong {
    font-size: 0.84rem;
  }

  .community,
  .final-cta {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }

  .community-backdrop {
    font-size: 6rem;
  }

  .path-grid a {
    min-height: 11.5rem;
  }

  .mobile-app-dock {
    min-height: 3rem;
    gap: 0.55rem;
    padding: 0.7rem 0.85rem;
  }
}

@media (max-width: 820px) and (orientation: landscape) and (max-height: 560px) {
  .section-shell {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .mobile-nav {
    padding-top: max(4.75rem, calc(4rem + env(safe-area-inset-top)));
  }

  .mobile-nav-main a {
    min-height: 3rem;
    font-size: 2rem;
  }

  .hero {
    padding-top: 5.25rem;
    padding-bottom: 3rem;
  }

  .hero h1 {
    font-size: clamp(3.4rem, 10vw, 5rem);
  }

  .network-dashboard {
    height: 32rem;
  }

  .traffic-dialog[open],
  .route-dialog[open] {
    gap: 0.6rem;
  }

  .traffic-dialog-bar span {
    margin-bottom: 0.25rem;
  }

  .community {
    min-height: 0;
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
}

@media (hover: none) {
  .app-card:hover,
  .button:hover,
  .asset-card:hover {
    transform: none;
  }
}

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

  .has-js [data-observe] {
    opacity: 1;
    transform: none;
  }

  .hero-network-connection,
  .hero-network-node,
  .hero-network-node > * {
    transition-duration: 1950ms !important;
  }

  .hero-network-pulse {
    animation-duration: 4s !important;
    animation-iteration-count: infinite !important;
  }

  .route-main {
    animation-duration: 1.2s !important;
    animation-iteration-count: infinite !important;
  }
}

@media (forced-colors: active) {
  .status-dot {
    border: 1px solid currentColor;
  }

  .hero-network-line,
  .hero-network-node-halo,
  .hero-network-node-core {
    stroke: currentColor;
  }
}
