:root {
  --void: #07090b;
  --hangar: #0a0d10;
  --plate: #12171c;
  --steel: #1a2128;
  --edge: #2a333c;
  --chrome: #c9d2db;
  --chrome-hi: #f3f6f8;
  --mute: #8b959e;
  --acid: #4ee34a;
  --acid-hot: #7cff62;
  --acid-deep: #1d7a28;
  --acid-dim: rgba(78, 227, 74, 0.12);
  --cyan: #9ef2ff;
  --gun: #2c343c;
  --font-mark: "Audiowide", sans-serif;
  --font-head: "Orbitron", sans-serif;
  --font-body: "Chakra Petch", sans-serif;
  --font-mono: "Share Tech Mono", monospace;
  --nav-h: 76px;
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  background: var(--hangar);
  color: var(--chrome);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.55;
  min-height: 100%;
}

body {
  overflow-x: hidden;
}

body.has-cursor {
  cursor: none;
}

body.has-cursor a,
body.has-cursor button {
  cursor: none;
}

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

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

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

ul,
ol {
  list-style: none;
}

.field {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.atmosphere {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.atmosphere__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(78, 227, 74, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(78, 227, 74, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse at 50% 30%, #000 20%, transparent 78%);
}

.atmosphere__fog {
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: -8%;
  height: 42%;
  background:
    radial-gradient(ellipse at 30% 80%, rgba(78, 227, 74, 0.1), transparent 55%),
    radial-gradient(ellipse at 70% 90%, rgba(46, 160, 70, 0.08), transparent 50%);
  filter: blur(18px);
  animation: fog-drift 18s ease-in-out infinite alternate;
}

.atmosphere__scan {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0 3px,
    rgba(0, 0, 0, 0.08) 3px 4px
  );
  opacity: 0.22;
  animation: scan-drift 10s linear infinite;
}

.atmosphere__grain {
  position: absolute;
  inset: 0;
  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='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.atmosphere__vignette {
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 180px 40px rgba(0, 0, 0, 0.55);
}

@keyframes fog-drift {
  from { transform: translateX(-3%); }
  to { transform: translateX(3%); }
}

@keyframes scan-drift {
  from { background-position: 0 0; }
  to { background-position: 0 80px; }
}

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  width: 28px;
  height: 28px;
  pointer-events: none;
  mix-blend-mode: screen;
  transform: translate(-100px, -100px);
}

.cursor__ring,
.cursor__core {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(78, 227, 74, 0.7);
  border-radius: 50%;
}

.cursor__core {
  inset: 11px;
  background: var(--acid);
  border: 0;
  box-shadow: 0 0 10px var(--acid);
}

.rail {
  position: fixed;
  top: 50%;
  left: 18px;
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transform: translateY(-50%);
}

.rail__node {
  width: 11px;
  height: 11px;
  border: 1px solid rgba(78, 227, 74, 0.35);
  transform: rotate(45deg);
}

.rail__node span {
  display: block;
  width: 100%;
  height: 100%;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.rail__node.is-active span {
  background: var(--acid);
  box-shadow: 0 0 12px var(--acid);
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px 0 42px;
  background: linear-gradient(180deg, rgba(7, 9, 11, 0.88), rgba(7, 9, 11, 0.42) 80%, transparent);
  backdrop-filter: blur(10px);
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav__logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(78, 227, 74, 0.35));
  animation: logo-glow 4s ease-in-out infinite;
}

.nav__word {
  font-family: var(--font-mark);
  letter-spacing: 0.14em;
  font-size: 0.92rem;
}

.nav__links {
  display: flex;
  gap: 26px;
}

.nav__links a {
  font-family: var(--font-head);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mute);
  position: relative;
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--acid);
  transition: width 0.28s ease;
}

.nav__links a:hover,
.nav__links a.is-on {
  color: var(--chrome-hi);
}

.nav__links a:hover::after,
.nav__links a.is-on::after {
  width: 100%;
}

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

.ca-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px 7px 8px;
  border: 1px solid var(--edge);
  background: rgba(18, 23, 28, 0.85);
  max-width: 220px;
}

.ca-chip__label {
  font-family: var(--font-head);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  color: #0a0d10;
  background: var(--acid);
  padding: 3px 5px;
}

.ca-chip__value {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--chrome);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ca-chip.is-copied {
  border-color: var(--acid);
  box-shadow: 0 0 16px rgba(78, 227, 74, 0.2);
}

.icon-btn {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--edge);
  background: rgba(18, 23, 28, 0.85);
}

.icon-btn img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

img[src*="x.svg"],
img[src*="dexscreener.svg"] {
  filter: none;
}

img[src*="solana.svg"] {
  filter: none;
}

.icon-btn:hover {
  border-color: var(--acid);
  box-shadow: 0 0 16px rgba(78, 227, 74, 0.18);
}

.nav__toggle {
  display: none;
  width: 38px;
  height: 38px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border: 1px solid var(--edge);
}

.nav__toggle span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--chrome);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav__toggle.is-open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav__toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.is-open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

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

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  padding: calc(var(--nav-h) + 20px) 7vw 80px;
  gap: 20px;
}

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

.hero__rings {
  position: absolute;
  width: min(520px, 78vw);
  height: min(520px, 78vw);
}

.hero__rings i {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(78, 227, 74, 0.18);
  border-radius: 50%;
  animation: ring-spin 22s linear infinite;
}

.hero__rings i:nth-child(2) {
  inset: 8%;
  border-style: dashed;
  animation-duration: 34s;
  animation-direction: reverse;
}

.hero__rings i:nth-child(3) {
  inset: 18%;
  border-color: rgba(158, 242, 255, 0.16);
  animation-duration: 16s;
}

.hero__beam {
  position: absolute;
  width: 2px;
  height: 46%;
  top: 6%;
  background: linear-gradient(to bottom, transparent, var(--acid-hot), transparent);
  opacity: 0.35;
  animation: beam-sweep 7s ease-in-out infinite;
}

.hero__tilt {
  position: relative;
  z-index: 2;
  transform-style: preserve-3d;
  transition: transform 0.18s ease-out;
}

.hero__unit {
  position: relative;
  width: min(420px, 68vw);
  animation: unit-idle 5.6s ease-in-out infinite;
}

.hero__unit::after {
  content: "";
  position: absolute;
  inset: 8% 18%;
  background: linear-gradient(180deg, transparent, rgba(158, 242, 255, 0.18), transparent);
  mix-blend-mode: screen;
  animation: visor-scan 3.8s ease-in-out infinite;
  pointer-events: none;
}

.hero__logo {
  width: 100%;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.45)) drop-shadow(0 0 24px rgba(78, 227, 74, 0.18));
}

.hero__platform {
  position: absolute;
  bottom: 8%;
  width: min(380px, 64vw);
  height: 54px;
}

.hero__disc {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(78, 227, 74, 0.32), rgba(78, 227, 74, 0.04) 55%, transparent 72%);
  box-shadow: 0 0 40px rgba(78, 227, 74, 0.22);
  animation: disc-pulse 3.4s ease-in-out infinite;
}

.hero__glow {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(158, 242, 255, 0.12), transparent 60%);
}

.hero__floor {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 160%;
  height: 38%;
  transform: translateX(-50%) perspective(480px) rotateX(68deg);
  background:
    repeating-linear-gradient(90deg, rgba(78, 227, 74, 0.07) 0 1px, transparent 1px 52px),
    repeating-linear-gradient(0deg, rgba(78, 227, 74, 0.07) 0 1px, transparent 1px 52px);
  mask-image: radial-gradient(ellipse at center, #000 10%, transparent 72%);
}

.hero__copy {
  max-width: 560px;
  justify-self: start;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding: 6px 10px;
  border: 1px solid var(--edge);
  background: rgba(18, 23, 28, 0.7);
}

.kicker__sol {
  height: 18px;
  width: 18px;
}

.kicker span {
  font-family: var(--font-head);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
}

.wordmark {
  font-family: var(--font-mark);
  font-size: clamp(2.6rem, 7vw, 5.6rem);
  letter-spacing: 0.1em;
  line-height: 0.95;
  background: linear-gradient(185deg, #ffffff 0%, #e6edf3 22%, #9aa6b2 46%, #6a7380 52%, #d7dee6 68%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 22px rgba(78, 227, 74, 0.28));
}

.hero__symbol {
  margin: 14px 0 18px;
  font-family: var(--font-mono);
  font-size: 0.86rem;
  letter-spacing: 0.16em;
  color: var(--mute);
}

.hero__symbol b {
  color: var(--acid-hot);
  font-weight: 400;
}

.hero__lead {
  font-family: var(--font-head);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  letter-spacing: 0.04em;
  color: var(--chrome-hi);
}

.hero__sub {
  margin-top: 10px;
  color: var(--mute);
  max-width: 42ch;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  font-family: var(--font-head);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.btn__horn {
  width: 18px;
  height: 16px;
  color: currentColor;
}

.btn--acid {
  background: var(--acid);
  color: #08100a;
}

.btn--acid::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -40%;
  width: 40%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-20deg);
  animation: charge 2.8s ease-in-out infinite;
}

.btn--acid:hover {
  box-shadow: 0 0 28px rgba(78, 227, 74, 0.35);
}

.btn--ghost {
  border-color: var(--edge);
  background: rgba(18, 23, 28, 0.7);
  color: var(--chrome);
}

.btn--ghost:hover {
  border-color: var(--acid);
  color: var(--chrome-hi);
}

.btn--acid img[src*="x.svg"] {
  filter: brightness(0);
}

.btn--ghost img[src*="x.svg"],
.btn--ghost img[src*="dexscreener.svg"] {
  filter: none;
}

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

.hero__telemetry div {
  padding: 12px 10px;
  border: 1px solid var(--edge);
  background: rgba(12, 16, 20, 0.72);
}

.hero__telemetry dt {
  font-family: var(--font-head);
  font-size: 0.56rem;
  letter-spacing: 0.16em;
  color: var(--mute);
}

.hero__telemetry dd {
  margin-top: 6px;
  font-family: var(--font-mono);
  color: var(--acid-hot);
}

.ticker {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-block: 1px solid var(--edge);
  background: rgba(8, 10, 12, 0.8);
}

.ticker__track {
  display: flex;
  gap: 42px;
  width: max-content;
  padding: 12px 0;
  animation: ticker 32s linear infinite;
}

.ticker span {
  font-family: var(--font-head);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  color: var(--mute);
}

.ticker span:nth-child(odd) {
  color: var(--acid);
}

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

.section-head__code {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: var(--acid);
  margin-bottom: 10px;
}

.section-head h2 {
  font-family: var(--font-mark);
  font-size: clamp(2rem, 5vw, 3.4rem);
  letter-spacing: 0.12em;
  background: linear-gradient(180deg, #fff, #9aa6b2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-head__rule {
  margin-top: 10px;
  color: var(--mute);
  max-width: 52ch;
}

.about,
.buy,
.chart {
  position: relative;
  z-index: 2;
  padding: 110px 7vw;
}

.about__grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 22px;
}

.plate {
  position: relative;
  background: linear-gradient(180deg, rgba(18, 23, 28, 0.92), rgba(12, 16, 20, 0.88));
  border: 1px solid var(--edge);
  padding: 28px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.plate::before,
.plate::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  pointer-events: none;
}

.plate::before {
  left: -1px;
  bottom: -1px;
  border-left: 2px solid var(--acid);
  border-bottom: 2px solid var(--acid);
}

.plate::after {
  right: -1px;
  bottom: -1px;
  border-right: 2px solid var(--acid);
  border-bottom: 2px solid var(--acid);
}

.gait__step {
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.gait__step:hover {
  transform: translateY(-8px);
  border-color: rgba(78, 227, 74, 0.45);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28), 0 0 24px rgba(78, 227, 74, 0.08);
}

.plate__bolts::before,
.plate__bolts::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border: 1px solid var(--edge);
  border-radius: 50%;
  box-shadow: 0 0 0 8px transparent;
}

.plate__bolts::before {
  top: 10px;
  left: 10px;
}

.plate__bolts::after {
  top: 10px;
  right: 10px;
}

.about__story h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  letter-spacing: 0.03em;
  margin-bottom: 16px;
}

.about__story p {
  color: var(--mute);
  margin-bottom: 14px;
}

.about__story a {
  color: var(--acid-hot);
  border-bottom: 1px solid rgba(78, 227, 74, 0.35);
}

.about__closer {
  font-family: var(--font-head);
  color: var(--chrome-hi) !important;
  letter-spacing: 0.04em;
}

.about__unit {
  margin-top: 22px;
  width: 120px;
  filter: drop-shadow(0 0 16px rgba(78, 227, 74, 0.25));
}

.dossier {
  border: 1px solid var(--edge);
  background: rgba(8, 11, 14, 0.86);
}

.dossier__head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--edge);
  font-family: var(--font-head);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
}

.dossier__head img {
  width: 22px;
  height: 20px;
  color: var(--acid);
}

.dossier ul li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 20px;
  border-bottom: 1px solid rgba(42, 51, 60, 0.7);
  font-family: var(--font-mono);
  font-size: 0.78rem;
}

.dossier ul li span {
  color: var(--mute);
}

.dossier ul li b {
  color: var(--chrome-hi);
  font-weight: 400;
}

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

.gait::before {
  content: "";
  position: absolute;
  top: 58px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--acid), transparent);
  opacity: 0.35;
}

.gait__step {
  min-height: 320px;
}

.gait__idx {
  font-family: var(--font-mark);
  font-size: 1.8rem;
  color: rgba(78, 227, 74, 0.35);
  letter-spacing: 0.08em;
}

.gait__icon {
  width: 56px;
  height: 56px;
  margin: 16px 0;
  display: grid;
  place-items: center;
  border: 1px solid var(--edge);
  background: #0b0f13;
}

.gait__icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.gait__icon--sol img {
  width: 34px;
  height: 34px;
}

.gait__icon--mark img {
  width: 40px;
  height: 40px;
}

.gait__step h3 {
  font-family: var(--font-head);
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.gait__step p {
  color: var(--mute);
  font-size: 0.95rem;
}

.gait__step a {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--font-head);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--acid-hot);
}

.bezel {
  border: 1px solid var(--edge);
  background: #080b0e;
  box-shadow: 0 0 0 8px rgba(18, 23, 28, 0.6);
}

.bezel__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--edge);
}

.bezel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--edge);
}

.bezel__dot:first-child {
  background: var(--acid);
  box-shadow: 0 0 8px var(--acid);
}

.bezel__title {
  margin-left: 8px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--mute);
}

.bezel__ext {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bezel__ext img {
  width: 14px;
  height: 14px;
  object-fit: contain;
}

.bezel__screen {
  height: min(720px, 78vh);
}

.bezel__screen iframe {
  width: 100%;
  height: 100%;
  border: 0;
  background: #0b1114;
}

.join {
  position: relative;
  z-index: 2;
  padding: 0;
  overflow: hidden;
}

.join__stage {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 1;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.join__banner {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: banner-drift 28s ease-in-out infinite alternate;
}

.join__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 9, 11, 0.55), rgba(7, 9, 11, 0.28) 40%, rgba(7, 9, 11, 0.7)),
    radial-gradient(ellipse at center, transparent 20%, rgba(7, 9, 11, 0.55) 100%);
}

.join__content {
  position: relative;
  z-index: 2;
  width: min(860px, 90vw);
  padding: 28px 32px;
  text-align: center;
  background: rgba(8, 11, 14, 0.55);
  border: 1px solid rgba(78, 227, 74, 0.22);
  backdrop-filter: blur(8px);
}

.join__content h2 {
  font-family: var(--font-mark);
  font-size: clamp(2.2rem, 6vw, 4rem);
  letter-spacing: 0.14em;
  margin: 8px 0 16px;
}

.join__content p {
  color: #d5dce3;
  max-width: 56ch;
  margin: 0 auto 28px;
}

.join__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.foot {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 7vw 36px;
  border-top: 1px solid var(--edge);
  background: #07090b;
}

.foot__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mark);
  letter-spacing: 0.12em;
}

.foot__brand img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.foot p {
  color: var(--mute);
  font-size: 0.9rem;
}

.foot__links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.foot__links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute);
}

.foot__links img {
  width: 13px;
  height: 13px;
  object-fit: contain;
}

.foot__links img[src*="x.svg"],
.foot__links img[src*="dexscreener.svg"] {
  filter: none;
}

.foot__links a:hover {
  color: var(--acid-hot);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  animation: reveal 0.8s ease forwards;
}

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

@keyframes beam-sweep {
  0%, 100% { transform: translateX(-120px) rotate(12deg); opacity: 0; }
  40%, 60% { opacity: 0.45; }
  50% { transform: translateX(120px) rotate(12deg); }
}

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

@keyframes disc-pulse {
  0%, 100% { transform: scaleX(1); opacity: 0.85; }
  50% { transform: scaleX(1.06); opacity: 1; }
}

@keyframes charge {
  0% { left: -40%; }
  100% { left: 140%; }
}

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

@keyframes banner-drift {
  from { transform: scale(1.02) translateX(0); }
  to { transform: scale(1.06) translateX(-1.2%); }
}

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

@keyframes logo-glow {
  0%, 100% { filter: drop-shadow(0 0 8px rgba(78, 227, 74, 0.25)); }
  50% { filter: drop-shadow(0 0 16px rgba(78, 227, 74, 0.55)); }
}

@keyframes visor-scan {
  0%, 100% { transform: translateY(-18%); opacity: 0; }
  45%, 55% { opacity: 1; }
  50% { transform: translateY(18%); }
}

.gait__step:nth-child(1) { animation-delay: 0.05s; }
.gait__step:nth-child(2) { animation-delay: 0.15s; }
.gait__step:nth-child(3) { animation-delay: 0.25s; }
.gait__step:nth-child(4) { animation-delay: 0.35s; }

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: calc(var(--nav-h) + 10px);
  }

  .hero__copy {
    justify-self: center;
    text-align: center;
  }

  .hero__cta,
  .kicker {
    justify-content: center;
  }

  .hero__sub {
    margin-inline: auto;
  }

  .about__grid,
  .gait {
    grid-template-columns: 1fr 1fr;
  }

  .gait::before {
    display: none;
  }

  .rail {
    display: none;
  }
}

@media (max-width: 820px) {
  .nav {
    padding: 0 16px;
  }

  .nav__links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    background: rgba(7, 9, 11, 0.96);
    border-bottom: 1px solid var(--edge);
    padding: 8px 0 16px;
  }

  .nav__links.is-open {
    display: flex;
  }

  .nav__links a {
    padding: 14px 22px;
  }

  .hero__stage {
    min-height: 420px;
  }

  .nav__toggle {
    display: flex;
  }

  .nav__word,
  .ca-chip,
  .icon-btn[data-pump-link],
  .icon-btn[data-dex-link] {
    display: none;
  }

  .about,
  .buy,
  .chart {
    padding: 80px 20px;
  }

  .about__grid,
  .gait,
  .hero__telemetry {
    grid-template-columns: 1fr;
  }

  .join__stage {
    aspect-ratio: auto;
    display: block;
  }

  .join__banner {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 1;
    display: block;
  }

  .join__veil {
    display: none;
  }

  .join__content {
    width: 100%;
    padding: 32px 18px 40px;
    border: 0;
    border-top: 1px solid rgba(78, 227, 74, 0.22);
    background: rgba(8, 11, 14, 0.92);
    backdrop-filter: none;
  }

  .cursor {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  html {
    scroll-behavior: auto;
  }
}
