:root {
  color-scheme: dark;
  --bg: #05070a;
  --panel: #0b1017;
  --panel-soft: #101620;
  --line: rgba(203, 213, 225, 0.15);
  --text: #f8fafc;
  --soft: #d8e0eb;
  --muted: #94a3b8;
  --blue: #38bdf8;
  --blue-dark: #2563eb;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  font-family: Inter, Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 74% 5%, rgba(56, 189, 248, 0.12), transparent 30rem),
    linear-gradient(180deg, #05070a 0%, #080b10 48%, #05070a 100%);
  color: var(--text);
}

body::before {
  position: fixed;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 40px));
  min-height: 76px;
  margin: 0 auto;
  backdrop-filter: blur(16px);
}

.site-header[data-elevated="true"] {
  border-bottom: 1px solid var(--line);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 800;
}

.brand-mark {
  position: relative;
  width: 32px;
  aspect-ratio: 1;
  border: 1px solid rgba(56, 189, 248, 0.72);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.2), rgba(255, 255, 255, 0.04));
  box-shadow: 0 0 28px rgba(56, 189, 248, 0.18);
  transform: rotate(45deg);
}

.brand-mark::after {
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 4px;
  content: "";
}

.desktop-nav,
.header-actions,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.desktop-nav a,
.ghost-link,
.site-footer a {
  color: var(--muted);
  font-size: 14px;
  transition: color 160ms ease;
}

.desktop-nav a:hover,
.ghost-link:hover,
.site-footer a:hover {
  color: var(--text);
}

.primary-link,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: var(--radius);
  font-weight: 800;
}

.primary-link,
.button.primary {
  color: #021017;
  background: var(--blue);
  box-shadow: 0 18px 44px rgba(56, 189, 248, 0.18);
}

.button.secondary {
  border: 1px solid rgba(216, 224, 235, 0.2);
  color: var(--soft);
  background: rgba(255, 255, 255, 0.045);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
}

.mobile-nav {
  position: fixed;
  inset: 76px 20px auto;
  z-index: 30;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(7, 10, 15, 0.97);
  box-shadow: var(--shadow);
}

.mobile-nav a {
  display: block;
  padding: 13px 6px;
  color: var(--soft);
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  align-items: center;
  gap: 54px;
  min-height: calc(100vh - 76px);
  padding: 44px 0 80px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(44px, 6.2vw, 82px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  max-width: 760px;
  margin-bottom: 16px;
  font-size: clamp(30px, 4.2vw, 54px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

p {
  color: var(--muted);
  line-height: 1.65;
}

.hero-text {
  max-width: 650px;
  color: var(--soft);
  font-size: clamp(18px, 2.1vw, 24px);
}

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

.hero-points span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--soft);
  background: rgba(255, 255, 255, 0.035);
  font-weight: 800;
}

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

.protocol-panel {
  position: relative;
  min-height: 560px;
  border: 1px solid rgba(203, 213, 225, 0.16);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(16, 23, 32, 0.78), rgba(5, 7, 10, 0.28)),
    radial-gradient(circle at 50% 45%, rgba(56, 189, 248, 0.12), transparent 22rem);
  box-shadow: var(--shadow);
}

.protocol-panel::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle, black, transparent 76%);
}

.network-core {
  position: absolute;
  inset: 50%;
  z-index: 2;
  display: grid;
  width: 210px;
  min-height: 210px;
  place-items: center;
  padding: 28px;
  border: 1px solid rgba(56, 189, 248, 0.42);
  border-radius: 999px;
  background: rgba(5, 7, 10, 0.84);
  box-shadow: 0 0 54px rgba(56, 189, 248, 0.14);
  text-align: center;
  transform: translate(-50%, -50%);
}

.network-core strong {
  font-size: 28px;
}

.network-core small {
  color: var(--muted);
  line-height: 1.45;
}

.core-mark {
  width: 38px;
  aspect-ratio: 1;
  border: 1px solid var(--blue);
  border-radius: var(--radius);
  transform: rotate(45deg);
}

.orbit {
  position: absolute;
  inset: 50%;
  border: 1px solid rgba(56, 189, 248, 0.18);
  border-radius: 999px;
  transform: translate(-50%, -50%);
}

.orbit-one {
  width: 420px;
  height: 220px;
}

.orbit-two {
  width: 520px;
  height: 340px;
  transform: translate(-50%, -50%) rotate(-18deg);
}

.system-node {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 154px;
  min-height: 64px;
  border: 1px solid rgba(203, 213, 225, 0.2);
  border-radius: var(--radius);
  background: rgba(9, 14, 21, 0.92);
  color: var(--soft);
  font-weight: 800;
  animation: float 7s ease-in-out infinite;
}

.node-one {
  top: 16%;
  left: 15%;
}

.node-two {
  top: 23%;
  right: 11%;
  animation-delay: -1s;
}

.node-three {
  right: 14%;
  bottom: 18%;
  animation-delay: -2s;
}

.node-four {
  bottom: 20%;
  left: 12%;
  animation-delay: -3s;
}

.compact,
.roadmap {
  padding: 112px 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
  gap: 70px;
  padding: 116px 0;
}

.sticky-heading {
  position: sticky;
  top: 110px;
  align-self: start;
}

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

.section-heading p:not(.eyebrow) {
  max-width: 620px;
  font-size: 18px;
}

.statement-list,
.proposal-board {
  display: grid;
  gap: 16px;
}

.statement-list article,
.proposal-board article,
.feature-card,
.phase-grid article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.statement-list span,
.phase-grid span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.foundation-band,
.metrics-band,
.community-band {
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.026);
}

.foundation-grid,
.community-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 56px;
  align-items: center;
  padding: 88px 0;
}

.foundation-items,
.docs-grid,
.security-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.foundation-items span,
.docs-grid a,
.security-list span {
  min-height: 58px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(5, 7, 10, 0.38);
  color: var(--soft);
  font-weight: 700;
}

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

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

.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  aspect-ratio: 1;
  margin-bottom: 42px;
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: var(--radius);
  color: var(--blue);
  font-weight: 800;
}

.tokenomics-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
  gap: 18px;
  padding: 120px 0;
}

.token-summary,
.allocation-table {
  border: 1px solid rgba(56, 189, 248, 0.18);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.026));
}

.token-summary {
  padding: 36px;
}

.token-summary h2 {
  margin-bottom: 10px;
  color: var(--blue);
  font-size: clamp(64px, 11vw, 132px);
}

.token-summary dl {
  display: grid;
  gap: 16px;
  margin: 34px 0 0;
}

.token-summary div {
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.token-summary dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.token-summary dd {
  margin: 6px 0 0;
  color: var(--soft);
  font-weight: 800;
}

.allocation-table {
  display: grid;
  align-content: center;
  padding: 22px;
}

.allocation-table div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 6px;
  border-bottom: 1px solid var(--line);
  color: var(--soft);
}

.allocation-table div:last-child {
  border-bottom: 0;
}

.allocation-table strong {
  color: var(--blue);
  font-size: 24px;
}

.status {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 10px;
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.status.open {
  color: #031018;
  background: var(--blue);
}

.status.review {
  color: #031018;
  background: #cbd5e1;
}

.status.draft {
  border: 1px solid var(--line);
  color: var(--soft);
}

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

.metrics-grid div {
  padding: 26px;
  border-right: 1px solid var(--line);
}

.metrics-grid div:last-child {
  border-right: 0;
}

.metrics-grid span {
  color: var(--blue);
  font-size: clamp(42px, 7vw, 76px);
  font-weight: 800;
}

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

.community-grid {
  justify-content: space-between;
}

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

.metric-card,
.wide-card,
.info-card,
.submit-card,
.tracker-card,
.treasury-balance {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
}

.metric-card {
  display: grid;
  gap: 10px;
  min-height: 170px;
  padding: 24px;
}

.metric-card span,
.card-title span,
.sale-header span,
.sale-stats span,
.wallet-box span,
.treasury-balance span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.metric-card strong {
  color: var(--text);
  font-size: clamp(28px, 4vw, 42px);
}

.metric-card small,
.card-title small,
.wallet-row strong,
.status-result small,
.treasury-balance small {
  color: var(--muted);
}

.wide-card {
  grid-column: span 2;
  padding: 26px;
}

.card-title,
.wallet-row,
.sale-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.wallet-row {
  padding: 16px 0;
  border-top: 1px solid var(--line);
  color: var(--soft);
}

.card-title {
  margin-bottom: 16px;
}

.genesis-band {
  border-block: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(56, 189, 248, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.02);
}

.genesis-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
  gap: 54px;
  align-items: center;
  padding: 112px 0 34px;
}

.sale-panel {
  padding: 28px;
  border: 1px solid rgba(56, 189, 248, 0.22);
  border-radius: var(--radius);
  background: rgba(5, 7, 10, 0.52);
  box-shadow: var(--shadow);
}

.sale-header {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.sale-header strong {
  color: var(--blue);
  font-size: 24px;
}

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

.sale-qr-row {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  margin-top: 22px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.sale-qr-row img {
  width: 116px;
  border-radius: var(--radius);
  background: #fff;
}

.sale-qr-row span,
.wallet-view-link {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.sale-stats div {
  min-height: 82px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.sale-stats strong {
  display: block;
  margin-top: 8px;
  color: var(--soft);
  font-size: 18px;
}

.wallet-box {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.wallet-view-link {
  margin-bottom: 0;
  color: var(--blue);
}

.progress-card {
  display: grid;
  gap: 12px;
  margin: 22px 0;
  padding: 18px;
  border: 1px solid rgba(56, 189, 248, 0.24);
  border-radius: var(--radius);
  background: rgba(56, 189, 248, 0.055);
}

.progress-card.spacious {
  margin: 22px 0 0;
}

.progress-header,
.progress-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.progress-header span,
.progress-meta span,
.mini-tokenomics > span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.progress-header strong {
  color: var(--blue);
  font-size: 32px;
}

.progress-track {
  height: 13px;
  overflow: hidden;
  border: 1px solid rgba(56, 189, 248, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
}

.progress-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), #93c5fd);
  box-shadow: 0 0 24px rgba(56, 189, 248, 0.38);
}

.mini-tokenomics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.mini-tokenomics > span {
  grid-column: 1 / -1;
}

.mini-tokenomics div {
  min-height: 72px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.mini-tokenomics strong {
  display: block;
  color: var(--blue);
  font-size: 24px;
}

.mini-tokenomics small {
  color: var(--muted);
}

.tokenomics-bars {
  display: grid;
  gap: 14px;
}

.tokenomics-bars div {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  color: var(--soft);
}

.tokenomics-bars div:last-child {
  border-bottom: 0;
}

.tokenomics-bars i {
  grid-column: 1 / -1;
  display: block;
  height: 8px;
  border-radius: 999px;
  background: var(--blue);
  box-shadow: 0 0 18px rgba(56, 189, 248, 0.28);
}

code {
  overflow-wrap: anywhere;
  color: var(--soft);
}

.copy-button {
  justify-self: start;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 800;
}

.form-grid {
  display: grid;
  grid-template-columns: 0.8fr 0.8fr 1.25fr;
  gap: 16px;
  padding: 0 0 112px;
}

.info-card,
.submit-card,
.tracker-card {
  padding: 26px;
}

.submit-card,
.tracker-card {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

input {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 14px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  font: inherit;
}

.status-result {
  display: grid;
  gap: 6px;
  margin-top: 10px;
  padding: 20px;
  border: 1px solid rgba(56, 189, 248, 0.22);
  border-radius: var(--radius);
  background: rgba(56, 189, 248, 0.055);
}

.status-result span {
  color: var(--blue);
  font-weight: 800;
}

.status-result strong {
  font-size: 24px;
}

.treasury-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.75fr) minmax(0, 1.25fr);
  gap: 16px;
  padding: 0 0 78px;
}

.treasury-balance {
  display: grid;
  align-content: center;
  gap: 12px;
  min-height: 260px;
  padding: 30px;
}

.treasury-balance strong {
  color: var(--blue);
  font-size: clamp(54px, 8vw, 86px);
}

.protocol-status-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding-bottom: 26px;
}

.protocol-status-grid article {
  min-height: 180px;
  padding: 26px;
  border-right: 1px solid var(--line);
}

.protocol-status-grid article:last-child {
  border-right: 0;
}

.protocol-status-grid span {
  display: block;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.protocol-status-grid strong {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-size: clamp(26px, 3.5vw, 38px);
}

.protocol-status-grid i {
  display: inline-block;
  width: 12px;
  aspect-ratio: 1;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 18px rgba(34, 197, 94, 0.62);
}

.protocol-status-grid small {
  display: block;
  margin-top: 12px;
  color: var(--muted);
}

.treasury-link-row {
  padding: 0 0 78px;
}

.vote-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0;
}

.vote-grid button {
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--soft);
  background: rgba(255, 255, 255, 0.045);
  font-weight: 800;
}

.live-network {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: #030508;
}

#networkCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.live-overlay {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1.2fr);
  gap: 46px;
  align-items: end;
  min-height: 620px;
  padding: 76px 0;
}

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

.live-stats span {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  min-height: 58px;
  padding: 18px;
  border: 1px solid rgba(203, 213, 225, 0.16);
  border-radius: var(--radius);
  background: rgba(5, 7, 10, 0.72);
  color: var(--muted);
  font-weight: 800;
}

.live-stats strong {
  color: var(--blue);
}

.chapter-grid,
.community-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.chapter-grid article {
  min-height: 190px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.chapter-grid span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.community-list span {
  min-height: 58px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(5, 7, 10, 0.38);
  color: var(--soft);
  font-weight: 700;
}

.genesis-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 56px;
  align-items: end;
  padding: 92px 0 72px;
}

.status-sidebar,
.official-wallet-card,
.distribution-info-card,
.guide-card,
.manual-card,
.purchase-form,
.qr-side-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
}

.status-sidebar {
  padding: 24px;
}

.status-sidebar h2 {
  margin-bottom: 20px;
  font-size: 24px;
}

.status-sidebar dl,
.purchase-result dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

.status-sidebar div,
.purchase-result div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.status-sidebar dt,
.purchase-result dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.status-sidebar dd,
.purchase-result dd {
  margin: 0;
  color: var(--soft);
  font-weight: 800;
  text-align: right;
}

.live-dot {
  display: inline-block;
  width: 9px;
  aspect-ratio: 1;
  margin-right: 7px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 14px rgba(34, 197, 94, 0.72);
}

.genesis-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 22px;
  align-items: start;
}

.genesis-content {
  display: grid;
  gap: 22px;
}

.official-wallet-card,
.distribution-info-card,
.guide-card,
.manual-card,
.purchase-form,
.qr-side-card {
  padding: 30px;
}

.wallet-details,
.distribution-grid,
.form-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.wallet-details div,
.distribution-grid div {
  min-height: 78px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.wallet-details span,
.distribution-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.wallet-details strong,
.distribution-grid strong {
  color: var(--soft);
}

.address-line {
  grid-column: span 2;
}

.wallet-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 22px 0;
}

.official-warning {
  padding: 18px;
  border: 1px solid rgba(56, 189, 248, 0.24);
  border-radius: var(--radius);
  color: var(--soft);
  background: rgba(56, 189, 248, 0.06);
  font-weight: 800;
}

.guide-timeline {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.guide-timeline li {
  position: relative;
  display: flex;
  gap: 16px;
  min-height: 70px;
  padding-bottom: 18px;
}

.guide-timeline li:not(:last-child)::after {
  position: absolute;
  top: 34px;
  left: 16px;
  width: 1px;
  height: calc(100% - 26px);
  background: rgba(56, 189, 248, 0.26);
  content: "";
}

.guide-timeline span {
  z-index: 1;
  display: grid;
  place-items: center;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  color: #031018;
  background: var(--blue);
  font-weight: 900;
}

.guide-timeline strong {
  padding-top: 6px;
  color: var(--soft);
}

.manual-card {
  border-color: rgba(56, 189, 248, 0.32);
  background: linear-gradient(180deg, rgba(56, 189, 248, 0.08), rgba(11, 16, 23, 0.98));
}

.purchase-form {
  display: grid;
  gap: 18px;
}

.purchase-result {
  padding: 20px;
  border: 1px solid rgba(56, 189, 248, 0.28);
  border-radius: var(--radius);
  background: rgba(56, 189, 248, 0.06);
}

.purchase-result > span {
  display: block;
  margin-bottom: 14px;
  color: var(--blue);
  font-weight: 900;
}

.qr-side-card {
  position: sticky;
  top: 98px;
  display: grid;
  gap: 16px;
}

.qr-side-card img {
  width: 100%;
  border-radius: var(--radius);
  background: #fff;
}

.faq-section {
  max-width: 900px;
  padding: 70px 0 112px;
}

details {
  border-top: 1px solid var(--line);
}

details:last-child {
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  padding: 24px 0;
  color: var(--soft);
  font-size: 20px;
  font-weight: 800;
}

details p {
  max-width: 720px;
  padding-bottom: 24px;
}

.terms-band {
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.026);
}

.terms-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1.2fr);
  gap: 48px;
  align-items: center;
  padding: 80px 0;
}

.docs-hero {
  padding: 92px 0 58px;
}

.doc-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.doc-meta span {
  min-height: 40px;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--soft);
  background: rgba(255, 255, 255, 0.035);
  font-weight: 800;
}

.docs-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 54px;
  padding: 40px 0 112px;
}

.docs-toc {
  position: sticky;
  top: 98px;
  display: grid;
  gap: 10px;
  align-self: start;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(11, 16, 23, 0.86);
}

.docs-toc strong {
  margin-bottom: 8px;
  color: var(--text);
}

.docs-toc a {
  color: var(--muted);
  font-size: 14px;
}

.docs-paper {
  display: grid;
  gap: 26px;
}

.docs-paper section {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.docs-paper ul,
.docs-paper ol {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding-left: 22px;
  color: var(--soft);
  line-height: 1.7;
}

.doc-callout {
  margin: 24px 0;
  padding: 20px;
  border: 1px solid rgba(56, 189, 248, 0.28);
  border-radius: var(--radius);
  color: var(--soft);
  background: rgba(56, 189, 248, 0.06);
  font-weight: 800;
}

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

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

.doc-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
}

.doc-grid span {
  color: var(--muted);
  line-height: 1.55;
}

.network-demo {
  position: relative;
  min-height: calc(100vh - 76px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #030508;
}

.network-demo-overlay {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) 360px;
  gap: 54px;
  align-items: end;
  min-height: calc(100vh - 76px);
  padding: 90px 0;
}

.network-demo-copy {
  position: relative;
  z-index: 2;
}

.network-console {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid rgba(56, 189, 248, 0.22);
  border-radius: var(--radius);
  background: rgba(5, 7, 10, 0.78);
  box-shadow: var(--shadow);
}

.network-console div,
.feed-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.network-console span,
.feed-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.network-console strong,
.feed-card strong {
  color: var(--blue);
}

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

.feed-card {
  min-height: 190px;
}

.product-hero {
  grid-template-columns: minmax(430px, 1.02fr) minmax(420px, 0.98fr);
  gap: 70px;
}

.product-hero .hero-copy {
  max-width: 720px;
}

.product-hero h1 {
  max-width: 720px;
  font-size: clamp(46px, 5.8vw, 76px);
  line-height: 1;
}

.product-hero .hero-text {
  max-width: 560px;
}

.system-terminal {
  padding: 28px;
  border: 1px solid rgba(56, 189, 248, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(16, 23, 32, 0.86), rgba(5, 7, 10, 0.88)),
    radial-gradient(circle at 70% 10%, rgba(56, 189, 248, 0.1), transparent 18rem);
  box-shadow: var(--shadow);
}

.terminal-header,
.ops-status-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.terminal-header span,
.ops-status-bar span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--soft);
  font-weight: 800;
}

.terminal-header i,
.ops-status-bar i {
  width: 10px;
  aspect-ratio: 1;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 16px rgba(34, 197, 94, 0.66);
}

.terminal-header strong,
.ops-status-bar strong {
  color: var(--blue);
}

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

.terminal-grid div,
.ops-side article {
  min-height: 112px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.terminal-grid span,
.ops-side span {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.terminal-grid strong {
  color: var(--text);
  font-size: clamp(28px, 4vw, 42px);
}

.terminal-log {
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.22);
  font-family: Consolas, Monaco, monospace;
}

.data-source-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -4px 0 18px;
}

.data-source-row span {
  min-height: 32px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.terminal-log p {
  margin: 0;
  color: var(--soft);
  font-size: 13px;
}

.terminal-log span {
  color: var(--blue);
}

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

.capability-grid article,
.trust-grid article,
.workflow-steps article {
  min-height: 240px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.capability-grid span,
.workflow-steps span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  aspect-ratio: 1;
  margin-bottom: 40px;
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: var(--radius);
  color: var(--blue);
  font-weight: 900;
}

.workflow-band,
.access-band {
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.026);
}

.workflow-grid,
.access-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  gap: 56px;
  align-items: center;
  padding: 96px 0;
}

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

.dashboard-section {
  padding: 112px 0;
}

.ops-dashboard {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) 320px;
  gap: 16px;
}

.ops-main {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: var(--radius);
  background: #030508;
}

.ops-status-bar {
  position: absolute;
  inset: 0 0 auto;
  z-index: 2;
  padding: 18px;
  background: rgba(5, 7, 10, 0.72);
  backdrop-filter: blur(12px);
}

.ops-main #networkCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.network-legend {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: calc(100% - 28px);
}

.network-legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 30px;
  padding: 0 9px;
  border: 1px solid rgba(203, 213, 225, 0.14);
  border-radius: var(--radius);
  color: var(--muted);
  background: rgba(5, 7, 10, 0.72);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.network-legend i {
  display: inline-block;
}

.wallet-dot,
.tx-dot,
.treasury-dot {
  width: 8px;
  aspect-ratio: 1;
  border-radius: 999px;
}

.wallet-dot {
  background: #38bdf8;
}

.tx-dot {
  background: #f8fafc;
}

.treasury-dot {
  background: #22c55e;
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.72);
}

.edge-line {
  width: 18px;
  height: 1px;
  background: rgba(56, 189, 248, 0.72);
}

.ops-side {
  display: grid;
  gap: 16px;
}

.ops-side strong {
  color: var(--blue);
  font-size: 24px;
}

.access-form {
  display: grid;
  gap: 14px;
  padding: 28px;
  border: 1px solid rgba(56, 189, 248, 0.22);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.protocol-address-band {
  border-block: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(56, 189, 248, 0.045), rgba(255, 255, 255, 0.018)),
    rgba(255, 255, 255, 0.018);
}

.protocol-address-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(520px, 1.2fr);
  gap: 58px;
  align-items: center;
  padding: 104px 0;
}

.address-status-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.address-status-list span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--soft);
  font-weight: 800;
}

.address-status-list i {
  width: 10px;
  aspect-ratio: 1;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 16px rgba(34, 197, 94, 0.62);
}

.protocol-address-card {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(56, 189, 248, 0.22);
  border-radius: var(--radius);
  background: rgba(5, 7, 10, 0.66);
  box-shadow: var(--shadow);
}

.address-qr-panel,
.address-detail-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.address-qr-panel {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 16px;
}

.address-qr-panel span,
.address-meta-grid span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.address-qr-panel img {
  width: 100%;
  border-radius: var(--radius);
  background: #fff;
}

.address-detail-panel {
  display: grid;
  gap: 18px;
  padding: 22px;
}

.address-detail-panel code {
  display: block;
  padding: 16px;
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.22);
  color: var(--soft);
  font-size: 15px;
}

.address-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

.address-meta-grid div {
  min-height: 78px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.address-meta-grid strong {
  display: block;
  margin-top: 8px;
  color: var(--blue);
}

.asset-notice {
  padding: 16px;
  border: 1px solid rgba(56, 189, 248, 0.26);
  border-radius: var(--radius);
  color: var(--soft);
  background: rgba(56, 189, 248, 0.06);
  font-weight: 800;
  line-height: 1.55;
}

.infra-address-band {
  border-block: 1px solid var(--line);
  background:
    radial-gradient(circle at 70% 40%, rgba(56, 189, 248, 0.08), transparent 28rem),
    rgba(255, 255, 255, 0.018);
}

.infra-address-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(560px, 1.1fr);
  gap: 42px;
  align-items: center;
  padding: 84px 0;
}

.infra-address-copy p {
  max-width: 620px;
}

.infra-status-chips,
.asset-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.infra-status-chips {
  margin-top: 28px;
}

.infra-status-chips span,
.asset-pills span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--soft);
  background: rgba(255, 255, 255, 0.04);
  font-size: 13px;
  font-weight: 800;
}

.infra-status-chips i {
  width: 9px;
  aspect-ratio: 1;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 14px rgba(34, 197, 94, 0.7);
}

.infra-address-card {
  display: grid;
  grid-template-columns: 184px minmax(0, 1fr);
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(56, 189, 248, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(16, 23, 32, 0.88), rgba(5, 7, 10, 0.9)),
    rgba(5, 7, 10, 0.82);
  box-shadow: var(--shadow);
}

.infra-qr-card,
.infra-address-details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.infra-qr-card {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 14px;
}

.infra-qr-card span,
.infra-qr-card small,
.infra-card-head span,
.infra-meta-grid span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.infra-qr-card img {
  width: 100%;
  max-width: 156px;
  justify-self: center;
  border-radius: var(--radius);
  background: #fff;
}

.infra-address-details {
  display: grid;
  gap: 16px;
  padding: 20px;
}

.infra-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.infra-card-head strong {
  display: block;
  margin-top: 6px;
  color: var(--text);
  font-size: 21px;
}

.infra-card-head em {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  color: #031018;
  background: #22c55e;
  font-style: normal;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.infra-address-details code {
  display: block;
  padding: 14px;
  border: 1px solid rgba(56, 189, 248, 0.22);
  border-radius: var(--radius);
  color: var(--soft);
  background: rgba(0, 0, 0, 0.24);
  font-size: 14px;
  overflow-wrap: anywhere;
}

.infra-actions {
  margin: 0;
}

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

.infra-meta-grid div {
  min-height: 72px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.infra-meta-grid strong {
  display: block;
  margin-top: 7px;
  color: var(--blue);
}

.site-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 34px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 42px 0 56px;
  border-top: 1px solid var(--line);
}

.site-footer nav {
  flex-wrap: wrap;
  justify-content: flex-end;
  max-width: 820px;
}

@keyframes float {
  0%,
  100% {
    margin-top: 0;
  }
  50% {
    margin-top: -16px;
  }
}

@media (max-width: 1120px) {
  .product-hero {
    grid-template-columns: 1fr;
    gap: 34px;
    align-items: start;
  }

  .product-hero h1 {
    max-width: 820px;
    font-size: clamp(42px, 7vw, 66px);
  }

  .system-terminal {
    max-width: 760px;
  }
}

@media (max-width: 760px) {
  h1,
  .product-hero h1 {
    font-size: clamp(34px, 10vw, 46px);
    line-height: 1.04;
  }

  h2 {
    font-size: clamp(28px, 8vw, 38px);
    line-height: 1.08;
  }

  .hero-text {
    font-size: 17px;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .button {
    flex: 1 1 100%;
  }

  .system-terminal,
  .access-form,
  .infra-address-card {
    padding: 18px;
  }

  .terminal-grid div,
  .ops-side article {
    min-height: 94px;
    padding: 14px;
  }

  .terminal-grid strong {
    font-size: 28px;
  }

  .capability-grid article,
  .trust-grid article,
  .workflow-steps article {
    min-height: auto;
    padding: 22px;
  }

  .capability-grid span,
  .workflow-steps span {
    margin-bottom: 24px;
  }

  .ops-main {
    min-height: 360px;
  }

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

@media (max-width: 980px) {
  .desktop-nav,
  .header-actions {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .hero,
  .split,
  .tokenomics-section,
  .foundation-grid,
  .community-grid,
  .genesis-grid,
  .form-grid,
  .treasury-layout,
  .live-overlay,
  .genesis-page-hero,
  .genesis-main-grid,
  .terms-grid,
  .docs-layout,
  .network-demo-overlay,
  .product-hero,
  .workflow-grid,
  .access-grid,
  .ops-dashboard,
  .protocol-address-grid,
  .protocol-address-card,
  .infra-address-layout,
  .infra-address-card {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 34px;
  }

  .protocol-panel {
    min-height: 500px;
  }

  .feature-grid,
  .dashboard-grid,
  .metrics-grid,
  .protocol-status-grid,
  .phase-grid,
  .chapter-grid,
  .network-feed-grid,
  .capability-grid,
  .trust-grid,
  .workflow-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .qr-side-card {
    position: static;
  }

  .docs-toc {
    position: static;
  }

  .sticky-heading {
    position: static;
  }
}

@media (max-width: 640px) {
  .site-header,
  .section-shell,
  .site-footer {
    width: min(100% - 28px, 1180px);
  }

  h1 {
    font-size: clamp(34px, 10vw, 44px);
    line-height: 1.06;
  }

  h2 {
    font-size: clamp(26px, 8vw, 34px);
    line-height: 1.1;
  }

  .protocol-panel {
    min-height: 430px;
  }

  .feature-grid,
  .dashboard-grid,
  .metrics-grid,
  .protocol-status-grid,
  .phase-grid,
  .chapter-grid,
  .network-feed-grid,
  .capability-grid,
  .trust-grid,
  .workflow-steps,
  .terminal-grid,
  .community-list,
  .security-list,
  .foundation-items,
  .docs-grid,
  .doc-grid,
  .sale-stats,
  .sale-qr-row,
  .live-stats,
  .wallet-details,
  .distribution-grid,
  .form-fields {
    grid-template-columns: 1fr;
  }

  .address-meta-grid {
    grid-template-columns: 1fr;
  }

  .infra-meta-grid {
    grid-template-columns: 1fr;
  }

  .infra-card-head {
    flex-direction: column;
  }

  .wide-card {
    grid-column: span 1;
  }

  .address-line {
    grid-column: span 1;
  }

  .protocol-status-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .protocol-status-grid article:last-child {
    border-bottom: 0;
  }

  .metrics-grid div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metrics-grid div:last-child {
    border-bottom: 0;
  }

  .network-core {
    width: 174px;
    min-height: 174px;
  }

  .orbit-one {
    width: 315px;
    height: 185px;
  }

  .orbit-two {
    width: 375px;
    height: 270px;
  }

  .system-node {
    width: 130px;
    min-height: 54px;
    font-size: 13px;
  }

  .node-one {
    left: 6%;
  }

  .node-two {
    right: 5%;
  }

  .node-three {
    right: 5%;
  }

  .node-four {
    left: 5%;
  }

  .site-footer {
    flex-direction: column;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}
