:root {
  --void: #050607;
  --steel: #0b0e12;
  --plate: #12171c;
  --plate-2: #1a2128;
  --line: rgba(0, 255, 157, 0.18);
  --line-strong: rgba(0, 229, 255, 0.35);
  --chrome: #d8e0e8;
  --chrome-2: #8b959e;
  --neon: #00ff9d;
  --cyan: #00e5ff;
  --violet: #8b6cff;
  --text: #e8eef3;
  --muted: #8d989f;
  --font-display: "Audiowide", sans-serif;
  --font-head: "Oxanium", sans-serif;
  --font-body: "Rajdhani", sans-serif;
  --font-mono: "Share Tech Mono", monospace;
  --radius: 18px;
  --max: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background: radial-gradient(1200px 700px at 80% 10%, rgba(0, 229, 255, 0.07), transparent 50%),
    radial-gradient(900px 600px at 10% 80%, rgba(0, 255, 157, 0.06), transparent 55%),
    var(--void);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.55;
  overflow-x: hidden;
}

body.booting {
  overflow: hidden;
}

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

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

ul,
ol {
  list-style: none;
}

.fx-noise,
.fx-vignette,
.fx-grid,
.fx-orbs,
#chargeCanvas,
.scan-line {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.fx-noise {
  z-index: 40;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.fx-vignette {
  z-index: 39;
  background: radial-gradient(ellipse at center, transparent 46%, rgba(0, 0, 0, 0.72) 100%);
}

.fx-grid {
  z-index: 0;
  background-image:
    linear-gradient(rgba(0, 255, 157, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 78%);
}

.fx-orbs { z-index: 0; }

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.28;
  animation: orbDrift 16s ease-in-out infinite;
}

.orb-a {
  width: 420px;
  height: 420px;
  top: -80px;
  right: -40px;
  background: #00e5ff;
}

.orb-b {
  width: 360px;
  height: 360px;
  bottom: 8%;
  left: -80px;
  background: #00ff9d;
  animation-delay: -6s;
}

.orb-c {
  width: 260px;
  height: 260px;
  top: 48%;
  left: 42%;
  background: #8b6cff;
  opacity: 0.16;
  animation-delay: -11s;
}

@keyframes orbDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -24px) scale(1.08); }
}

#chargeCanvas { z-index: 1; }

.scan-line {
  z-index: 38;
  background: linear-gradient(transparent, rgba(0, 255, 157, 0.05), transparent);
  height: 18%;
  animation: scan 7.5s linear infinite;
}

@keyframes scan {
  0% { transform: translateY(-30vh); }
  100% { transform: translateY(110vh); }
}

.cursor {
  position: fixed;
  width: 22px;
  height: 22px;
  border: 1px solid var(--neon);
  border-radius: 50%;
  z-index: 80;
  pointer-events: none;
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
  transition: width 0.2s ease, height 0.2s ease, background 0.2s ease;
}

.cursor i {
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
}

.cursor.on-link {
  width: 42px;
  height: 42px;
  background: rgba(0, 255, 157, 0.08);
}

@media (pointer: coarse) {
  .cursor { display: none; }
}

.boot {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  background: #030405;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.boot.done {
  opacity: 0;
  visibility: hidden;
}

.boot-panel {
  width: min(420px, 90vw);
  text-align: center;
}

.boot-mark {
  position: relative;
  width: 132px;
  height: 132px;
  margin: 0 auto 22px;
}

.boot-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(0, 255, 157, 0.35);
}

.boot-ring {
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 1px dashed rgba(0, 229, 255, 0.55);
  animation: spin 8s linear infinite;
}

.boot-id {
  font-family: var(--font-mono);
  color: var(--cyan);
  letter-spacing: 0.18em;
  font-size: 12px;
  margin-bottom: 18px;
}

.boot-log {
  text-align: left;
  min-height: 92px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--neon);
  line-height: 1.8;
}

.boot-bar {
  margin-top: 16px;
  height: 4px;
  background: #1b242b;
  overflow: hidden;
}

.boot-bar i {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--neon), var(--cyan));
  box-shadow: 0 0 12px var(--neon);
  transition: width 0.25s ease;
}

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

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 14px 22px 0;
}

.nav-shell {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 10px 14px 10px 10px;
  background: rgba(8, 10, 13, 0.62);
  border: 1px solid rgba(0, 255, 157, 0.14);
  backdrop-filter: blur(16px);
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
}

.nav.scrolled .nav-shell {
  box-shadow: 0 0 28px rgba(0, 255, 157, 0.08);
  border-color: rgba(0, 229, 255, 0.28);
}

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

.nav-brand img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(0, 255, 157, 0.35), 0 0 18px rgba(0, 255, 157, 0.25);
}

.nav-brand b {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.08em;
}

.nav-brand small {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--cyan);
  letter-spacing: 0.22em;
}

.nav-links {
  display: flex;
  gap: 22px;
  margin-left: auto;
  font-family: var(--font-head);
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-links a {
  color: var(--muted);
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--neon);
  transition: width 0.25s ease;
  box-shadow: 0 0 8px var(--neon);
}

.nav-links a:hover {
  color: var(--neon);
}

.nav-links a:hover::after {
  width: 100%;
}

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

.nav-x {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.nav-x img {
  width: 15px;
  height: 15px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  position: relative;
}

.nav-toggle span {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background: var(--chrome);
  transition: 0.25s ease;
}

.nav-toggle span:nth-child(1) { top: 13px; }
.nav-toggle span:nth-child(2) { top: 20px; }
.nav-toggle span:nth-child(3) { top: 27px; }

.nav-toggle.open span:nth-child(1) { top: 20px; transform: rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { top: 20px; transform: rotate(-45deg); }

.status-rail {
  position: fixed;
  top: 92px;
  left: 0;
  right: 0;
  z-index: 30;
  overflow: hidden;
  border-top: 1px solid rgba(0, 255, 157, 0.1);
  border-bottom: 1px solid rgba(0, 255, 157, 0.1);
  background: rgba(5, 7, 8, 0.55);
  backdrop-filter: blur(8px);
}

.status-track {
  display: flex;
  gap: 42px;
  width: max-content;
  padding: 7px 0;
  animation: rail 28s linear infinite;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--cyan);
}

.status-track span {
  position: relative;
}

.status-track span::after {
  content: "/";
  position: absolute;
  right: -24px;
  color: var(--violet);
}

@keyframes rail {
  to { transform: translateX(-50%); }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn img {
  width: 16px;
  height: 16px;
}

.btn-solid {
  background: linear-gradient(180deg, #17ffad, #00c57a);
  color: #04110b;
  box-shadow: 0 0 22px rgba(0, 255, 157, 0.28);
}

.btn-solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(0, 255, 157, 0.5);
}

.btn-ghost {
  background: rgba(0, 229, 255, 0.05);
  border: 1px solid rgba(0, 229, 255, 0.32);
  color: var(--cyan);
}

.btn-ghost:hover {
  background: rgba(0, 229, 255, 0.12);
  box-shadow: 0 0 18px rgba(0, 229, 255, 0.2);
}

.btn-lg {
  min-height: 50px;
  padding: 0 20px;
}

.chrome-text {
  background: linear-gradient(180deg, #ffffff 0%, #cfd8df 36%, #8d97a1 52%, #f4f7fa 74%, #9aa4ad 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 18px rgba(0, 229, 255, 0.18));
}

.kicker {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.32em;
  color: var(--neon);
  margin-bottom: 12px;
}

main {
  position: relative;
  z-index: 2;
}

.hero {
  min-height: 100vh;
  padding: 170px 24px 80px;
  display: grid;
  align-items: center;
}

.hero-frame {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.hero-copy {
  position: relative;
}

.hud-brackets {
  position: absolute;
  inset: -18px -10px auto -10px;
  height: 28px;
  pointer-events: none;
}

.hud-brackets::before,
.hud-brackets::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  border: 2px solid rgba(0, 255, 157, 0.45);
}

.hud-brackets::before {
  top: 0;
  left: 0;
  border-right: 0;
  border-bottom: 0;
}

.hud-brackets::after {
  top: 0;
  right: 0;
  border-left: 0;
  border-bottom: 0;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(46px, 7vw, 92px);
  line-height: 0.92;
  letter-spacing: 0.02em;
}

.hero h1 em {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-family: var(--font-head);
  font-size: 0.28em;
  letter-spacing: 0.42em;
  color: var(--cyan);
}

.lede {
  max-width: 520px;
  margin: 22px 0 0;
  font-size: 22px;
  color: #c5d0d6;
}

.hud-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 26px 0 22px;
}

.hud-chips span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border: 1px solid rgba(0, 255, 157, 0.18);
  background: rgba(0, 255, 157, 0.04);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--chrome);
}

.hud-chips i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 8px var(--neon);
  animation: pulse 1.6s ease-in-out infinite;
}

@keyframes pulse {
  50% { opacity: 0.35; }
}

.ca-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 560px;
  padding: 8px 8px 8px 12px;
  background: rgba(8, 12, 14, 0.8);
  border: 1px solid rgba(0, 229, 255, 0.2);
}

.ca-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--cyan);
  letter-spacing: 0.16em;
}

#caText {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--chrome);
}

#copyCa {
  padding: 8px 12px;
  background: #11181d;
  border: 1px solid rgba(0, 255, 157, 0.3);
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--neon);
}

#copyCa.copied {
  color: #04110b;
  background: var(--neon);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
  max-width: 520px;
}

.hero-meta dt {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--muted);
}

.hero-meta dd {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--chrome);
}

.hero-core {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}

.core-video {
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  overflow: hidden;
  opacity: 0.22;
  filter: saturate(1.2) contrast(1.1);
  mask-image: radial-gradient(circle, black 55%, transparent 78%);
}

.core-video.hide {
  display: none;
}

.core-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.core-iris {
  position: relative;
  z-index: 3;
  width: min(430px, 78vw);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  box-shadow:
    0 0 0 2px rgba(0, 255, 157, 0.35),
    0 0 40px rgba(0, 255, 157, 0.18),
    inset 0 0 40px rgba(0, 0, 0, 0.45);
  animation: floatCore 6s ease-in-out infinite;
}

.core-iris img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.core-halo {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0, 229, 255, 0.28);
}

.halo-slow {
  width: 92%;
  height: 92%;
  border-style: dashed;
  animation: spin 22s linear infinite;
}

.halo-mid {
  width: 78%;
  height: 78%;
  border-color: rgba(0, 255, 157, 0.35);
  animation: spin 14s linear infinite reverse;
}

.halo-fast {
  width: 64%;
  height: 64%;
  border-color: rgba(139, 108, 255, 0.4);
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.12);
  animation: spin 9s linear infinite;
}

.core-ticks span {
  position: absolute;
  width: 2px;
  height: 18px;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
}

.core-ticks span:nth-child(1) { top: 4%; left: 50%; }
.core-ticks span:nth-child(2) { bottom: 4%; left: 50%; }
.core-ticks span:nth-child(3) { top: 50%; left: 4%; transform: rotate(90deg); }
.core-ticks span:nth-child(4) { top: 50%; right: 4%; transform: rotate(90deg); }

.core-caption {
  position: absolute;
  bottom: 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--neon);
}

@keyframes floatCore {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.about,
.buy,
.chart,
.join {
  padding: 110px 24px;
}

.section-head {
  max-width: var(--max);
  margin: 0 auto 48px;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 68px);
  letter-spacing: 0.04em;
}

.section-sub {
  max-width: 640px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 20px;
}

.loop-board {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 48px 1fr 48px 1fr;
  gap: 8px;
  align-items: stretch;
}

.loop-node {
  position: relative;
  padding: 28px 22px;
  background: linear-gradient(180deg, rgba(18, 23, 28, 0.9), rgba(8, 10, 12, 0.9));
  border: 1px solid var(--line);
  overflow: hidden;
}

.loop-node::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 255, 157, 0.08), transparent 40%);
  pointer-events: none;
}

.loop-index {
  font-family: var(--font-mono);
  color: var(--cyan);
  letter-spacing: 0.2em;
  font-size: 12px;
}

.loop-node h3 {
  font-family: var(--font-head);
  font-size: 28px;
  margin: 10px 0 12px;
  letter-spacing: 0.08em;
}

.loop-node p {
  color: var(--muted);
}

.loop-trace {
  align-self: center;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon), var(--cyan), transparent);
  box-shadow: 0 0 12px var(--neon);
  animation: tracePulse 2.2s ease-in-out infinite;
}

@keyframes tracePulse {
  50% { opacity: 0.25; }
}

.charge-line {
  max-width: var(--max);
  margin: 42px auto 0;
  padding: 22px 26px;
  border-left: 3px solid var(--neon);
  background: rgba(0, 255, 157, 0.04);
  font-family: var(--font-head);
  font-size: 24px;
  color: var(--chrome);
}

.stat-row {
  max-width: var(--max);
  margin: 36px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.stat-card {
  padding: 18px 16px;
  background: rgba(10, 13, 16, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.stat-card span {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--muted);
}

.stat-card strong {
  display: block;
  margin-top: 8px;
  font-family: var(--font-head);
  font-size: 22px;
}

.buy-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.buy-plate {
  padding: 26px 20px 22px;
  background: var(--plate);
  border: 1px solid rgba(0, 229, 255, 0.12);
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.buy-plate::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--neon), transparent);
}

.buy-plate:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 255, 157, 0.4);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35), 0 0 24px rgba(0, 255, 157, 0.12);
}

.plate-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: #0a0d10;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.plate-icon img {
  width: 30px;
  height: 30px;
}

.plate-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--cyan);
}

.buy-plate h3 {
  font-family: var(--font-head);
  font-size: 22px;
  margin: 8px 0 10px;
}

.buy-plate p {
  color: var(--muted);
  font-size: 16px;
  min-height: 84px;
}

.buy-plate a {
  display: inline-block;
  margin-top: 8px;
  font-family: var(--font-head);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--neon);
  border-bottom: 1px solid transparent;
}

.buy-plate a:hover {
  border-bottom-color: var(--neon);
}

.chart-shell {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
  padding: 10px;
  background: #07090b;
  border: 1px solid rgba(0, 229, 255, 0.2);
  box-shadow: 0 0 40px rgba(0, 229, 255, 0.08);
}

.chart-shell iframe {
  width: 100%;
  height: 640px;
  border: 0;
  background: #0b0e11;
}

.chart-corners::before,
.chart-corners::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  border: 2px solid var(--neon);
  pointer-events: none;
}

.chart-corners::before {
  top: 6px;
  left: 6px;
  border-right: 0;
  border-bottom: 0;
}

.chart-corners::after {
  bottom: 6px;
  right: 6px;
  border-left: 0;
  border-top: 0;
}

.join-stage {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 229, 255, 0.22);
  box-shadow: 0 0 50px rgba(0, 229, 255, 0.1);
}

.join-banner {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  filter: saturate(1.05) contrast(1.05);
}

.join-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 34px 28px;
  background: linear-gradient(180deg, transparent, rgba(4, 6, 8, 0.88) 40%, rgba(4, 6, 8, 0.96));
}

.join-cmd {
  font-family: var(--font-display);
  letter-spacing: 0.18em;
  font-size: clamp(16px, 2.4vw, 28px);
  color: var(--cyan);
  margin-bottom: 16px;
  text-shadow: 0 0 16px rgba(0, 229, 255, 0.35);
}

.join-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.foot {
  position: relative;
  z-index: 2;
  padding: 42px 24px 28px;
  border-top: 1px solid rgba(0, 255, 157, 0.12);
  background: rgba(4, 6, 8, 0.85);
}

.foot-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.foot-inner p {
  color: var(--muted);
  max-width: 360px;
  font-size: 16px;
}

.foot-icons {
  display: flex;
  gap: 10px;
}

.foot-icons a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #0c1014;
}

.foot-icons img {
  width: 18px;
  height: 18px;
}

.foot-note {
  max-width: var(--max);
  margin: 22px auto 0;
  font-size: 13px;
  color: #667078;
  font-family: var(--font-mono);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  animation: rise 0.9s ease forwards;
  animation-play-state: paused;
}

.reveal.in {
  animation-play-state: running;
}

.delay-1 { animation-delay: 0.12s; }
.delay-2 { animation-delay: 0.22s; }
.delay-3 { animation-delay: 0.32s; }

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1100px) {
  .hero-frame,
  .loop-board,
  .buy-grid,
  .stat-row {
    grid-template-columns: 1fr 1fr;
  }

  .loop-trace {
    display: none;
  }

  .hero-core {
    min-height: 440px;
  }
}

@media (max-width: 820px) {
  .nav-links,
  .nav-actions .btn {
    display: none;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 78px;
    left: 22px;
    right: 22px;
    padding: 18px;
    background: rgba(6, 8, 10, 0.96);
    border: 1px solid rgba(0, 255, 157, 0.2);
    z-index: 60;
  }

  .hero,
  .about,
  .buy,
  .chart,
  .join {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero {
    padding-top: 150px;
  }

  .hero-frame,
  .buy-grid,
  .stat-row,
  .foot-inner {
    grid-template-columns: 1fr;
    display: grid;
  }

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

  .chart-shell iframe {
    height: 460px;
  }

  .status-rail {
    top: 84px;
  }
}

@media (max-width: 560px) {
  .hero-meta,
  .loop-board {
    grid-template-columns: 1fr;
  }

  .lede,
  .section-sub {
    font-size: 17px;
  }

  .ca-bar {
    flex-wrap: wrap;
  }
}
