:root {
  --green: #b8ff00;
  --green-2: #76ff20;
  --green-3: #23ff45;
  --deep-green: #02260c;
  --black: #020403;
  --panel-black: #061007;
  --blue: #07349e;
  --blue-2: #0d55da;
  --gray: #c4c7c8;
  --gray-2: #e6e9e9;
  --ink: #121212;
  --red: #ff4040;
  --yellow: #ffe45f;
  --border: #757b7c;
  --shadow: rgba(0, 0, 0, 0.65);
  --mono: "Lucida Console", "Courier New", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --sans: Inter, Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #000;
  font-size: 12px;
}

body {
  margin: 0;
  min-height: 100vh;
  color: #101410;
  font-family: var(--sans);
  background:
    radial-gradient(circle at 50% 0%, rgba(184, 255, 0, 0.16), transparent 34rem),
    linear-gradient(180deg, #0a0d0a 0, #1a1d1c 3.2rem, #aeb3b4 3.25rem, #c9cdce 100%);
  overflow-x: hidden;
}

@media (min-width: 900px) {
  body {
    zoom: .75;
  }
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(184,255,0,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,255,0,.045) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  opacity: .35;
  z-index: 0;
}

.crt-overlay,
.noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
}

.crt-overlay {
  background: repeating-linear-gradient(180deg, rgba(255,255,255,0.018) 0 1px, transparent 1px 4px);
  mix-blend-mode: overlay;
  opacity: .45;
}

.noise-overlay {
  opacity: .05;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.7) 0 1px, transparent 1px),
    radial-gradient(circle at 60% 70%, rgba(255,255,255,.7) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,.7) 0 1px, transparent 1px);
  background-size: 240px 240px, 180px 180px, 300px 300px;
}

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

button,
input {
  font: inherit;
}

.tape {
  position: relative;
  z-index: 5;
  width: 100%;
  height: 36px;
  background: #050505;
  border-bottom: 2px solid #dfdfdf;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.tape-track {
  display: flex;
  align-items: center;
  gap: 1.7rem;
  white-space: nowrap;
  color: var(--green-3);
  font-family: var(--mono);
  font-weight: 800;
  font-size: clamp(.78rem, .95vw, .96rem);
  text-shadow: 0 0 8px rgba(42,255,72,.85);
  min-width: max-content;
  animation: ticker 36s linear infinite;
}

.tape-track span {
  display: inline-flex;
  align-items: center;
}

.tape-track span::after {
  content: "|";
  color: #e8e8e8;
  margin-left: 1.7rem;
  text-shadow: none;
}

.tape-track .loss,
.loss {
  color: var(--red) !important;
  text-shadow: 0 0 8px rgba(255,64,64,.5);
}

.tape-track .flat,
.flat {
  color: var(--yellow) !important;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.matrix-strip {
  position: relative;
  z-index: 4;
  width: 100%;
  height: 30px;
  background: #030604;
  color: var(--green-3);
  border-top: 1px solid #222;
  border-bottom: 1px solid #111;
  overflow: hidden;
  font-family: var(--mono);
  display: flex;
  align-items: center;
  text-shadow: 0 0 8px rgba(42,255,72,.65);
}

.matrix-strip .matrix-track {
  display: flex;
  gap: 1.75rem;
  min-width: max-content;
  white-space: nowrap;
  animation: ticker 48s linear infinite reverse;
  font-size: clamp(.72rem, .86vw, .88rem);
}

.matrix-logo-track {
  gap: 2.15rem;
  align-items: center;
}

.matrix-brand-run {
  display: inline-flex;
  align-items: center;
  gap: .42rem;
}

.matrix-brand-run .matrix-coin {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(184,255,0,.7));
}

.matrix-brand-run .matrix-wordmark {
  display: inline-block;
  width: 62px;
  height: 32px;
  object-fit: contain;
  filter: drop-shadow(0 0 7px rgba(34,255,66,.72));
}

.matrix-brand-run em {
  color: var(--green-3);
  font-style: normal;
  font-weight: 900;
}

.matrix-bottom {
  position: relative;
  z-index: 2;
}

.shell {
  width: min(1868px, calc(100% - 52px));
  margin: 16px auto 10px;
  position: relative;
  z-index: 2;
}

.nav-window {
  display: grid;
  grid-template-columns: minmax(190px, 280px) minmax(220px, 1fr) auto;
  align-items: center;
  gap: 1rem;
  padding: 8px 10px;
  background: linear-gradient(180deg, #d9ddde, #b7bdc0);
  border: 2px solid #989fa1;
  border-top-color: #f6f8f8;
  border-left-color: #f6f8f8;
  box-shadow: 3px 3px 0 rgba(0,0,0,.28);
  margin-bottom: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: .7rem;
  min-width: 0;
}

.brand > img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: contain;
  box-shadow: 0 0 12px rgba(184,255,0,.6);
}

.brand span {
  display: grid;
  align-content: center;
  min-width: 0;
}

.brand strong {
  display: block;
  color: #19ff3d;
  font-family: var(--mono);
  font-size: 1.34rem;
  letter-spacing: .05em;
  text-shadow: 0 0 8px rgba(25,255,61,.55);
}

.brand small {
  display: block;
  color: #0d5018;
  font-weight: 900;
  font-size: .68rem;
  letter-spacing: .09em;
}

.wordmark-img {
  display: block;
  object-fit: contain;
  background: transparent;
  image-rendering: auto;
}

.brand-wordmark,
.nav-wordmark-center {
  filter: drop-shadow(0 0 7px rgba(34,255,66,.58));
}

.nav-wordmark-center {
  justify-self: center;
  width: clamp(210px, 22vw, 340px);
  height: clamp(58px, 5.4vw, 86px);
  margin: -12px 0;
}

.rwa-wordmark {
  display: block;
  color: #27ff4b;
  font-family: Impact, "Arial Black", Haettenschweiler, sans-serif;
  font-style: italic;
  line-height: .86;
  letter-spacing: 0;
  text-transform: uppercase;
  -webkit-text-stroke: 1.5px #002e0d;
  text-shadow:
    1px 1px 0 #b8ffc3,
    3px 3px 0 #001806,
    5px 5px 0 rgba(0,0,0,.62),
    0 0 8px rgba(34,255,66,.52);
  transform: skewX(-12deg);
  transform-origin: left center;
}

.brand .rwa-wordmark {
  font-size: 1.65rem;
}

.footer-brand .rwa-wordmark {
  font-size: 1.86rem;
}

.brand strong.rwa-wordmark,
.footer-brand strong.rwa-wordmark,
.matrix-brand-run .rwa-wordmark,
.orbit-wordmark {
  color: #27ff4b;
  font-family: Impact, "Arial Black", Haettenschweiler, sans-serif;
  font-style: italic;
  letter-spacing: 0;
  text-transform: uppercase;
  -webkit-text-stroke: 1.5px #002e0d;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  background: #050505;
  color: #fff;
  border: 2px solid #1a1a1a;
  box-shadow: inset 0 0 0 1px #444;
  padding: .56rem .78rem;
  font-weight: 900;
  font-size: .82rem;
  transition: transform .15s ease, background .15s ease, color .15s ease;
}

.nav-links a:first-child {
  background: var(--green);
  color: #071005;
  border-color: #79a800;
}

.nav-links a:hover,
.terminal-button:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 14px;
  align-items: start;
}

.main-column,
.sidebar {
  display: grid;
  gap: 12px;
}

.window,
.mini-window {
  background: #c9cdce;
  border: 2px solid #8e9699;
  border-top-color: #f3f5f5;
  border-left-color: #f3f5f5;
  box-shadow: 3px 3px 0 rgba(0,0,0,.28);
}

.titlebar {
  min-height: 30px;
  background: linear-gradient(90deg, #092b94 0%, #0e54d0 58%, #1b74ef 100%);
  color: #fff;
  border-bottom: 2px solid #0b1c53;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .85rem;
  padding: 4px 8px 4px 10px;
  font-size: .98rem;
  font-weight: 900;
  letter-spacing: .02em;
  text-shadow: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.3);
}

.titlebar span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 1.05;
}

.window-controls {
  display: flex;
  align-items: center;
  gap: 3px;
  flex: none;
}

.window-controls i,
.info-dot {
  display: inline-grid;
  place-items: center;
  width: 19px;
  height: 19px;
  background: #d5dadc;
  border: 2px solid #6f7779;
  border-top-color: #fff;
  border-left-color: #fff;
  box-shadow: 1px 1px 0 rgba(0,0,0,.35);
  color: #060606;
  font-style: normal;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  text-shadow: none;
}

.window-controls i:nth-child(1)::before { content: "-"; transform: translateY(-1px); }
.window-controls i:nth-child(2)::before { content: "[]"; font-family: var(--mono); font-size: 9px; transform: translateY(-1px); }
.window-controls i:nth-child(3)::before { content: "X"; font-size: 11px; transform: translateY(-1px); }

.hero-content {
  min-height: 382px;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(260px, .84fr);
  gap: clamp(1.8rem, 3vw, 3.8rem);
  align-items: stretch;
  padding: clamp(1.9rem, 2.4vw, 2.65rem) clamp(2rem, 2.7vw, 3rem);
  background:
    linear-gradient(90deg, rgba(0,0,0,.35), transparent),
    radial-gradient(circle at 80% 44%, rgba(184,255,0,.15), transparent 24rem),
    linear-gradient(180deg, rgba(0,44,12,.88), rgba(0,18,6,.96));
  color: #fff;
  overflow: hidden;
}

.hero-content::before {
  content: none;
}

.hero-copy,
.hero-coin-wrap {
  position: relative;
  z-index: 1;
}

.hero-copy {
  min-width: 0;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  row-gap: 0;
  padding-left: clamp(.35rem, .8vw, 1.15rem);
  padding-block: clamp(.45rem, 1vw, 1.1rem);
  max-width: 780px;
}

.terminal-label {
  font-family: var(--mono);
  color: var(--green-2);
  letter-spacing: .27em;
  font-size: clamp(1.12rem, 1.04vw, 1.32rem);
  font-weight: 900;
  margin: 0 0 clamp(1.25rem, 1.7vw, 1.9rem);
  text-shadow: 0 0 10px rgba(118,255,32,.45);
}

.terminal-label span {
  letter-spacing: .08em;
}

.hero-copy h1 {
  margin: 0 0 clamp(2.15rem, 2.8vw, 3.1rem);
  color: var(--green-3);
  font-family: var(--mono);
  font-size: clamp(5.15rem, 6.9vw, 7.3rem);
  line-height: .9;
  letter-spacing: .01em;
  text-shadow: 0 0 12px rgba(42,255,72,.85), 0 0 42px rgba(42,255,72,.45);
}

.tagline {
  margin: 0 0 clamp(.9rem, 1.05vw, 1.15rem);
  font-family: var(--mono);
  font-weight: 900;
  font-size: clamp(1.16rem, 1.36vw, 1.58rem);
  line-height: 1.16;
  color: #fff;
  overflow-wrap: break-word;
}

.session-change {
  font-family: var(--mono);
  font-size: clamp(.98rem, 1.2vw, 1.22rem);
  line-height: 1.25;
  margin: 0 0 clamp(1.55rem, 1.85vw, 2.1rem);
}

.statline {
  display: flex;
  flex-wrap: wrap;
  gap: .72rem 1.55rem;
  font-family: var(--mono);
  align-items: center;
  margin-bottom: clamp(1.2rem, 1.45vw, 1.7rem);
  max-width: 720px;
}

.statline strong {
  color: #fff;
}

.status-dot {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-family: var(--mono);
  max-width: 720px;
}

.status-dot span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.status-dot.centered {
  justify-content: center;
}

.status-dot b,
.source-list b {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--green-3);
  box-shadow: 0 0 10px var(--green-3), 0 0 20px rgba(35,255,69,.4);
  display: inline-block;
  animation: livePulse 1.05s ease-in-out infinite;
}

.hero-coin-wrap {
  justify-self: center;
  align-self: center;
  display: grid;
  place-items: center;
  width: clamp(250px, 20vw, 330px);
  min-width: 0;
  aspect-ratio: 1;
  margin-right: clamp(.25rem, 1vw, 1.2rem);
  perspective: 900px;
}

.hero-coin {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  filter: drop-shadow(0 24px 25px rgba(0,0,0,.72));
  transform-style: preserve-3d;
  backface-visibility: hidden;
  animation: coinFlip 6.8s ease-in-out infinite;
  will-change: transform;
}

.coin-glow {
  position: absolute;
  inset: 3%;
  border-radius: 50%;
  background: rgba(184,255,0,.3);
  filter: blur(28px);
  z-index: 1;
}

@keyframes coinFlip {
  0%, 58%, 100% { transform: rotateY(0deg) rotateZ(-1.5deg) scale(1); }
  66% { transform: rotateY(82deg) rotateZ(2deg) scale(1.04); }
  74% { transform: rotateY(0deg) rotateZ(1.5deg) scale(1.01); }
  84% { transform: rotateZ(360deg) scale(1.02); }
}

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

.mini-window {
  background: #060906;
  color: #fff;
  border: 2px solid #1d231f;
  border-top-color: #2f3831;
  border-left-color: #2f3831;
  padding: 0;
  box-shadow: 3px 3px 0 rgba(0,0,0,.36), inset 0 0 0 1px rgba(35,255,69,.05);
}

.mini-title {
  background: #030503;
  color: var(--green-3);
  font-family: var(--mono);
  font-weight: 900;
  padding: .48rem .68rem;
  border-bottom: 1px solid #1b251d;
}

.mini-window p {
  margin: 0;
  padding: .9rem 1rem;
  line-height: 1.45;
  background: linear-gradient(180deg, rgba(35,255,69,.025), rgba(0,0,0,0));
}

.mini-window strong {
  color: var(--green);
}

.table-window {
  min-width: 0;
}

.table-tools {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 9px 12px;
  border-bottom: 1px solid #9fa5a6;
}

.table-tools strong {
  display: block;
  font-family: var(--mono);
  font-size: .95rem;
}

.table-tools span {
  color: #4d5555;
  font-family: var(--mono);
  font-size: .82rem;
}

.table-scroll {
  overflow-x: auto;
  padding: 0 10px 8px;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 1120px;
  font-family: var(--mono);
  font-size: .9rem;
  background: #fff;
}

th,
td {
  padding: .5rem .56rem;
  border: 1px solid #c5cacc;
  text-align: left;
  vertical-align: middle;
  white-space: nowrap;
}

th {
  background: linear-gradient(180deg, #0e5bdc, #0a319a);
  color: #fff;
  text-shadow: 1px 1px 0 #001451;
  font-family: var(--sans);
  font-weight: 1000;
  font-size: .92rem;
}

tbody tr:nth-child(even) {
  background: #eef1f2;
}

tbody tr:hover {
  background: #ecffd3;
}

.token-cell {
  display: flex;
  align-items: center;
  gap: .52rem;
  font-weight: 900;
  color: #0d0d0d;
}

.token-led {
  width: 16px;
  height: 16px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  border: 1px solid #7ba500;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.7), 0 0 9px rgba(184,255,0,.55);
  flex: none;
  animation: livePulse 1.4s ease-in-out infinite;
}

.token-label {
  display: grid;
  gap: .08rem;
  min-width: 0;
}

.token-name {
  display: block;
  color: #5e6768;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  max-width: 260px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.green,
.positive {
  color: #007a21;
  font-weight: 900;
}

.negative {
  color: #cf2727;
  font-weight: 900;
}

.loading-cell {
  text-align: center;
  padding: 2rem;
  color: #5c6162;
}

.table-note {
  padding: 0 12px 13px;
  margin: 0;
  color: #50595a;
  font-size: .86rem;
  line-height: 1.45;
}

.lore-window {
  margin-bottom: 12px;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, .66fr);
  gap: 22px;
  padding: 18px 20px 20px;
  background: #c9cdce;
}

.about-main {
  padding-right: 18px;
  border-right: 1px dotted rgba(0,0,0,.22);
}

.about-eyebrow {
  margin: 0 0 .65rem;
  color: #001b73;
  font-family: var(--mono);
  font-size: .95rem;
  font-weight: 900;
  letter-spacing: .32em;
}

.about-main h2 {
  max-width: 930px;
  margin: 0 0 1rem;
  color: #050505;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 2.35vw, 3rem);
  line-height: 1.05;
}

.about-layout p {
  margin: 0 0 .9rem;
  color: #050505;
  font-size: 1.02rem;
  line-height: 1.55;
}

.dropcap {
  float: left;
  color: #001b73;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.2rem;
  font-weight: 900;
  line-height: .82;
  margin: .16rem .45rem 0 0;
}

.about-media {
  display: grid;
  align-content: start;
  gap: 12px;
  min-width: 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: hidden;
}

.video-frame video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-side {
  padding: 0 2px 2px;
}

.about-side h3 {
  margin: 0 0 .9rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 1.6vw, 2rem);
  line-height: 1.15;
}

.about-side em {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
}

.about-side strong {
  display: block;
  margin-top: .75rem;
  font-size: 1.14rem;
}

.sidebar .window {
  width: 100%;
}

.visitor-window {
  border-color: #89721c;
}

.visitor-window .titlebar {
  background: linear-gradient(180deg, #0c51d0, #071f75);
}

.sound-btn {
  color: #ffec58;
  background: #050505;
  border: 2px solid #ffdf3c;
  border-top-color: #fff9a8;
  border-left-color: #fff9a8;
  padding: .14rem .42rem;
  font-size: .75rem;
  font-weight: 1000;
}

.counter {
  background:
    repeating-linear-gradient(45deg, #0c0c0c 0 12px, #151515 12px 24px);
  padding: 18px 12px 8px;
  display: flex;
  justify-content: center;
  gap: 5px;
}

.counter span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 54px;
  background: #0c0c0c;
  border: 1px solid #786600;
  border-bottom: 3px solid #806d00;
  color: var(--yellow);
  font-family: var(--mono);
  font-size: 2rem;
  font-weight: 900;
  text-shadow: 0 0 9px rgba(255,228,95,.8);
}

.weird-id {
  text-align: center;
  margin: .5rem 0;
  font-weight: 1000;
  color: #fff;
  background: #090909;
  padding: .35rem;
}

.pill-row {
  display: flex;
  justify-content: center;
  gap: .45rem;
  margin: .7rem 0;
  flex-wrap: wrap;
}

.pill-row span {
  background: #12203d;
  color: #fff;
  border: 1px solid #395995;
  padding: .28rem .45rem;
  font-size: .75rem;
  font-weight: 900;
}

.pill-row span:first-child {
  background: #f1d900;
  color: #0a0a0a;
  border-color: #7b6800;
  animation: blinkNew .7s steps(2, end) infinite;
}

.terminal-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  border: 2px solid #5f6500;
  border-top-color: #f4ff8a;
  border-left-color: #f4ff8a;
  background: var(--green);
  color: #071005;
  box-shadow: 2px 2px 0 rgba(0,0,0,.32);
  font-weight: 1000;
  padding: .58rem .82rem;
  cursor: pointer;
  transition: transform .15s ease, filter .15s ease;
  min-height: 36px;
}

.terminal-button.full {
  width: calc(100% - 24px);
  margin: 0 12px 12px;
}

.terminal-button.small {
  min-height: 32px;
  padding: .34rem .62rem;
  flex: none;
}

.terminal-button.black {
  background: #050505;
  color: #fff;
  border-color: #232323;
  border-top-color: #777;
  border-left-color: #777;
}

.contract-window,
.sources-window,
.follow-window,
.status-window,
.buy-window {
  padding-bottom: 12px;
}

.contract-window p,
.follow-window p,
.status-window p {
  margin: 12px 12px 10px;
  line-height: 1.35;
}

.status-window .status-dot {
  margin: 10px 12px 0;
}

.muted {
  color: #3e4747;
}

.contract-window input {
  width: calc(100% - 24px);
  margin: 0 12px 10px;
  padding: .66rem;
  border: 2px solid #9fa5a6;
  border-top-color: #fff;
  border-left-color: #fff;
  background: #fff;
  color: #111;
  font-family: var(--mono);
  font-weight: 700;
  box-shadow: inset 1px 1px 2px rgba(0,0,0,.12);
}

.source-list {
  list-style: none;
  padding: 12px;
  margin: 0;
  display: grid;
  gap: .58rem;
  font-family: var(--mono);
  font-size: .9rem;
}

.source-list li {
  display: flex;
  align-items: center;
  gap: .55rem;
}

.source-list b {
  width: 11px;
  height: 11px;
}

.source-list em {
  font-style: normal;
  font-weight: 900;
}

.buy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: .55rem;
  padding: 12px 12px 0;
}

.buy-grid .terminal-button {
  width: 100%;
  text-align: center;
}

.screener-cta-window {
  overflow: hidden;
}

.screener-cta {
  display: grid;
  grid-template-columns: minmax(260px, auto) minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 14px;
  background:
    linear-gradient(90deg, rgba(184,255,0,.18), rgba(184,255,0,0) 55%),
    linear-gradient(180deg, #d3d8d9, #bec5c6);
}

.screener-main-button {
  min-height: 48px;
  padding-inline: 1.1rem;
  font-family: var(--mono);
  font-size: clamp(.92rem, .95vw, 1.08rem);
  text-align: center;
  text-shadow: 0 0 7px rgba(184,255,0,.35);
}

.screener-cta p {
  margin: 0;
  color: #102010;
  font-family: var(--mono);
  font-size: clamp(.88rem, .9vw, 1rem);
  font-weight: 900;
  line-height: 1.35;
}

.tokenomics-orbit {
  position: relative;
  min-height: clamp(410px, 33vw, 520px);
  padding: 10px 0 8px;
  display: grid;
  justify-items: center;
  align-content: start;
  overflow: hidden;
  color: #071005;
  font-family: var(--mono);
}

.tokenomics-orbit::before {
  content: "";
  position: absolute;
  inset: 18% 8% 7%;
  background: radial-gradient(circle at center, rgba(184,255,0,.25), rgba(184,255,0,.08) 42%, transparent 72%);
  opacity: .82;
  pointer-events: none;
}

.orbit-kicker {
  position: relative;
  z-index: 2;
  margin: 0;
  color: #06270b;
  font-family: var(--mono);
  font-size: .88rem;
  font-weight: 1000;
  letter-spacing: .24em;
  text-shadow: 0 1px 0 rgba(255,255,255,.45), 0 0 8px rgba(42,255,72,.5);
}

.orbit-wordmark,
.orbit-wordmark-img {
  position: relative;
  z-index: 2;
  margin-top: 4px;
}

.orbit-wordmark {
  font-size: clamp(2rem, 3.4vw, 3.1rem);
}

.orbit-wordmark-img {
  width: min(190px, 56%);
  height: auto;
  margin-top: 3px;
  filter: drop-shadow(0 0 10px rgba(34,255,66,.68));
  transform-origin: center;
  animation: tokenWordmarkFlip 6.4s ease-in-out infinite;
  will-change: transform;
}

@keyframes tokenWordmarkFlip {
  0%, 52%, 100% { transform: perspective(680px) rotateY(0deg) rotateZ(0deg) scale(1); }
  62% { transform: perspective(680px) rotateY(76deg) rotateZ(-2deg) scale(1.04); }
  72% { transform: perspective(680px) rotateY(0deg) rotateZ(2deg) scale(1.01); }
  84% { transform: perspective(680px) rotateZ(360deg) scale(1); }
}

.orbit-stage {
  position: relative;
  z-index: 1;
  width: min(386px, 100%);
  aspect-ratio: 1;
  margin-top: -2px;
}

.orbit-stage::before {
  content: none;
}

.orbit-stage::after {
  content: none;
}

.orbit-dude {
  position: absolute;
  left: 50%;
  top: 49%;
  width: clamp(116px, 12vw, 158px);
  height: clamp(116px, 12vw, 158px);
  object-fit: contain;
  transform: translate(-50%, -50%);
  filter:
    drop-shadow(0 0 16px rgba(184,255,0,.45))
    drop-shadow(0 12px 14px rgba(0,0,0,.32));
  z-index: 4;
}

.orbit-item,
.orbit-supply,
.orbit-note {
  position: absolute;
  z-index: 3;
  font-family: var(--mono);
  text-align: center;
  text-decoration: none;
  text-shadow: 0 1px 0 rgba(255,255,255,.45), 0 0 8px rgba(42,255,72,.45);
}

.orbit-item strong,
.orbit-supply strong {
  display: block;
  color: #19ff3d;
  font-family: var(--mono);
  font-size: clamp(2rem, 3.05vw, 3.25rem);
  font-style: normal;
  line-height: .88;
  letter-spacing: -.04em;
  -webkit-text-stroke: 1px #004616;
  text-shadow:
    1px 1px 0 #061206,
    0 0 14px rgba(34,255,66,.9),
    0 0 28px rgba(34,255,66,.45);
}

.orbit-item span,
.orbit-supply span,
.orbit-note {
  display: block;
  color: #061306;
  font-size: clamp(.72rem, .78vw, .86rem);
  font-weight: 1000;
  letter-spacing: .1em;
  line-height: 1.05;
}

.orbit-item small,
.orbit-supply small {
  display: block;
  max-width: 124px;
  color: #183018;
  font-size: clamp(.58rem, .63vw, .68rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: .03em;
}

.orbit-dev {
  top: 17%;
  right: 2%;
  transform: rotate(16deg);
}

.orbit-community {
  bottom: 12%;
  left: 0;
  transform: rotate(-14deg);
}

.orbit-supply {
  top: 4%;
  left: 50%;
  transform: translateX(-50%) rotate(2deg);
}

.orbit-chain {
  top: 30%;
  left: 1%;
  transform: rotate(-16deg);
}

.orbit-contract {
  right: 4%;
  bottom: 29%;
  transform: rotate(16deg);
}

.orbit-pair {
  bottom: 6%;
  left: 50%;
  transform: translateX(-50%) rotate(0deg);
}

.footer {
  position: relative;
  z-index: 3;
  width: 100%;
  display: grid;
  grid-template-columns: 310px 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 12px min(5vw, 80px);
  background:
    linear-gradient(90deg, rgba(184,255,0,.08), transparent),
    #020403;
  border-top: 2px solid #252525;
  border-bottom: 2px solid #252525;
  color: #e9f6ea;
  font-size: .9rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: .85rem;
}

.footer-brand img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: contain;
}

.footer-brand strong:not(.rwa-wordmark) {
  color: var(--green-3);
  font-family: var(--mono);
  display: block;
  font-size: 1.5rem;
  letter-spacing: .06em;
}

.footer-brand strong.rwa-wordmark {
  display: block;
  color: #27ff4b;
  font-family: Impact, "Arial Black", Haettenschweiler, sans-serif;
  font-size: 1.86rem;
  font-style: italic;
  line-height: .86;
  letter-spacing: 0;
  text-transform: uppercase;
  -webkit-text-stroke: 1.5px #002e0d;
  text-shadow:
    1px 1px 0 #b8ffc3,
    3px 3px 0 #001806,
    5px 5px 0 rgba(0,0,0,.62),
    0 0 7px rgba(34,255,66,.48);
  transform: skewX(-12deg);
}

.footer-brand span {
  color: var(--green);
  display: block;
  font-size: .72rem;
  font-weight: 900;
}

.footer p {
  margin: 0;
  line-height: 1.4;
}

@media (max-width: 1180px) {
  .dashboard-grid {
    grid-template-columns: 1fr;
  }

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

  .tokenomics-orbit {
    grid-column: 1 / -1;
    min-height: 430px;
  }

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

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

  .about-layout {
    grid-template-columns: 1fr;
  }

  .about-main {
    padding-right: 0;
    border-right: 0;
    border-bottom: 1px dotted rgba(0,0,0,.22);
    padding-bottom: 1rem;
  }
}

@media (max-width: 760px) {
  html {
    font-size: 14px;
  }

  body {
    min-height: 100vh;
  }

  .shell {
    width: calc(100% - 14px);
    margin: 10px auto;
  }

  .nav-window,
  .hero-content,
  .table-tools {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-window {
    display: grid;
    grid-template-columns: 1fr;
  }

  .nav-links {
    justify-content: stretch;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav-wordmark-center {
    width: min(260px, 78vw);
    height: 68px;
    margin: -8px auto -6px;
  }

  .nav-links a {
    text-align: center;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .hero-coin-wrap {
    width: 230px;
    margin-inline: auto;
  }

  .screener-cta {
    grid-template-columns: 1fr;
  }

  .tokenomics-orbit {
    min-height: 390px;
    padding-top: 4px;
  }

  .orbit-stage {
    width: min(360px, 100%);
  }

  .orbit-item strong,
  .orbit-supply strong {
    font-size: clamp(2.45rem, 13vw, 3.6rem);
  }

  .orbit-dude {
    width: 112px;
    height: 112px;
  }

  .quick-panels,
  .sidebar {
    grid-template-columns: 1fr;
  }

  .counter span {
    width: 34px;
    height: 54px;
    font-size: 1.75rem;
  }

  .hero-copy h1 {
    font-size: clamp(3.05rem, 16vw, 3.55rem);
  }

  .tape {
    height: 36px;
  }

  .matrix-strip {
    height: 32px;
  }
}

@keyframes livePulse {
  0%, 100% {
    opacity: .55;
    transform: scale(.82);
    box-shadow: 0 0 6px rgba(35,255,69,.55), 0 0 14px rgba(35,255,69,.22);
  }
  50% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 11px rgba(35,255,69,.95), 0 0 24px rgba(35,255,69,.48);
  }
}

@keyframes blinkNew {
  0%, 45% { opacity: 1; filter: brightness(1.15); }
  46%, 100% { opacity: .25; filter: brightness(.85); }
}
