:root {
  --void: #050505;
  --tar: #0a0a0a;
  --char: #141414;
  --ash: #242424;
  --mist: #b7b7b7;
  --paper: #f3f3f3;
  --toxic: #9dff1c;
  --toxic-hot: #c8ff4a;
  --toxic-deep: #4e8c00;
  --glow: rgba(157, 255, 28, 0.42);
  --display: "Audiowide", "Orbitron", sans-serif;
  --ui: "Orbitron", sans-serif;
  --body: "Exo 2", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

html,
body {
  background: var(--void);
  color: var(--paper);
  font-family: var(--body);
  min-height: 100%;
}

body {
  overflow-x: hidden;
}

body.has-cursor {
  cursor: none;
}

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

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

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

code {
  font-family: var(--ui);
}

::selection {
  background: var(--toxic);
  color: #050505;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #050505;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--toxic), var(--toxic-deep));
}

/* background layers */
.void-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 18%, rgba(157, 255, 28, 0.08), transparent 38%),
    radial-gradient(circle at 80% 80%, rgba(40, 70, 10, 0.18), transparent 40%),
    linear-gradient(180deg, #070707 0%, #050505 45%, #080808 100%);
}

.sunburst {
  position: absolute;
  width: 160vmax;
  height: 160vmax;
  left: 50%;
  top: 8%;
  transform: translate(-50%, -42%);
  background: repeating-conic-gradient(
    from 0deg,
    rgba(255, 255, 255, 0.018) 0deg 9deg,
    rgba(0, 0, 0, 0.28) 9deg 18deg
  );
  mask-image: radial-gradient(circle, rgba(0, 0, 0, 0.85) 0%, transparent 62%);
  animation: spin-burst 72s linear infinite;
  opacity: 0.55;
}

.toxic-core {
  position: absolute;
  width: 42vw;
  height: 42vw;
  min-width: 280px;
  min-height: 280px;
  left: 62%;
  top: 18%;
  transform: translate(-50%, -20%);
  background: radial-gradient(circle, rgba(157, 255, 28, 0.22) 0%, rgba(157, 255, 28, 0.05) 38%, transparent 70%);
  filter: blur(18px);
  transition: left 0.6s ease, top 0.6s ease;
}

#fogCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.55;
}

.grain {
  position: absolute;
  inset: 0;
  opacity: 0.13;
  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");
  animation: grain-shift 1.2s steps(2) infinite;
}

.vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 42%, rgba(0, 0, 0, 0.72) 100%);
}

.scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0 3px,
    rgba(0, 0, 0, 0.08) 3px 4px
  );
  opacity: 0.25;
}

/* cursor */
.cursor-ring,
.cursor-dot {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  pointer-events: none;
  mix-blend-mode: screen;
}

body.has-cursor .cursor-ring,
body.has-cursor .cursor-dot {
  display: block;
}

.cursor-ring {
  width: 38px;
  height: 38px;
  margin: -19px 0 0 -19px;
  border: 1px solid var(--toxic);
  border-radius: 50%;
  transition: transform 0.15s ease;
}

.cursor-dot {
  width: 5px;
  height: 5px;
  margin: -2.5px 0 0 -2.5px;
  background: var(--toxic);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--toxic);
}

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

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

.boot-ring {
  position: absolute;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(157, 255, 28, 0.35);
  border-top-color: var(--toxic);
  border-radius: 50%;
  animation: spin-orbit 1.1s linear infinite;
}

.boot-logo {
  width: 132px;
  animation: breathe 2.4s ease-in-out infinite;
  filter: drop-shadow(0 0 24px var(--glow));
}

.boot-line {
  position: absolute;
  bottom: 18%;
  font-family: var(--ui);
  font-size: 11px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--toxic);
}

/* hazard tape */
.hazard-tape {
  position: relative;
  z-index: 30;
  overflow: hidden;
  height: 34px;
  background: repeating-linear-gradient(
    -45deg,
    #9dff1c 0 14px,
    #0a0a0a 14px 28px
  );
  border-bottom: 1px solid #111;
}

.hazard-track {
  display: flex;
  gap: 2.4rem;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  font-family: var(--ui);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #050505;
  mix-blend-mode: multiply;
  padding: 9px 0;
}

.hazard-track span {
  background: #9dff1c;
  padding: 0 8px;
}

/* nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 4vw;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.92), rgba(5, 5, 5, 0.55) 70%, transparent);
  backdrop-filter: blur(10px);
}

.nav-mark {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px;
}

.nav-mark img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 0 18px var(--glow);
  animation: breathe 3.6s ease-in-out infinite;
}

.nav-links {
  display: flex;
  gap: 1.6rem;
  font-family: var(--ui);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  color: #cfcfcf;
}

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

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

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

.nav-end {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.icon-btn {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(157, 255, 28, 0.28);
  background: rgba(10, 10, 10, 0.7);
  color: var(--toxic);
}

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

.nav-burger {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  gap: 5px;
}

.nav-burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--toxic);
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.15rem;
  font-family: var(--ui);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-toxic {
  background: var(--toxic);
  color: #061000;
  box-shadow: 0 0 24px var(--glow);
}

.btn-toxic:hover {
  transform: translateY(-2px);
  background: var(--toxic-hot);
  box-shadow: 0 0 34px var(--glow);
}

.btn-ghost {
  border: 1px solid rgba(157, 255, 28, 0.35);
  background: rgba(8, 8, 8, 0.55);
  color: var(--paper);
}

.btn-ghost:hover {
  border-color: var(--toxic);
  color: var(--toxic);
  box-shadow: 0 0 18px rgba(157, 255, 28, 0.18);
}

.btn-ghost img {
  filter: grayscale(1) brightness(2);
}

/* layout */
main,
footer {
  position: relative;
  z-index: 2;
}

.hero,
.about,
.buy,
.chart,
.join {
  padding: 5.5rem 6vw;
}

.section-head {
  max-width: 820px;
  margin-bottom: 2.8rem;
}

.kicker {
  font-family: var(--ui);
  font-size: 11px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--toxic);
  margin-bottom: 0.85rem;
}

h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 4.1rem);
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

h2 em {
  font-style: normal;
  color: var(--toxic);
  text-shadow: 0 0 24px var(--glow);
}

.lede {
  margin-top: 1rem;
  color: var(--mist);
  max-width: 52ch;
  font-size: 1.05rem;
}

.about,
.buy,
.chart {
  border-top: 1px solid rgba(157, 255, 28, 0.08);
}

/* hero */
.hero {
  min-height: calc(100vh - 96px);
  display: grid;
  align-content: center;
  position: relative;
  padding-top: 3rem;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  filter: saturate(0.65) contrast(1.2) brightness(0.38);
  pointer-events: none;
  z-index: 0;
}

.hero-video.show {
  opacity: 1;
}

.hero-video-veil {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 72% 48%, rgba(157, 255, 28, 0.08), transparent 28%),
    linear-gradient(90deg, rgba(5, 5, 5, 0.88) 0%, rgba(5, 5, 5, 0.55) 48%, rgba(5, 5, 5, 0.72) 100%);
}

.hero-stage {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3vw;
  align-items: center;
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--ui);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--toxic);
  margin-bottom: 1.2rem;
}

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

.hero h1 {
  font-family: var(--display);
  font-size: clamp(3rem, 8vw, 6.4rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
}

.ticker {
  margin-top: 1rem;
  font-family: var(--ui);
  font-size: clamp(1.1rem, 2.4vw, 1.7rem);
  letter-spacing: 0.34em;
  color: var(--toxic);
  text-shadow: 0 0 18px var(--glow);
}

.tagline {
  margin: 1.2rem 0 2rem;
  color: #d5d5d5;
  font-size: 1.15rem;
  max-width: 36ch;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.ca-bar {
  margin-top: 1.6rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  max-width: 560px;
  padding: 0.7rem 0.75rem 0.7rem 1rem;
  border: 1px solid rgba(157, 255, 28, 0.22);
  background: rgba(8, 8, 8, 0.72);
}

.ca-label {
  font-family: var(--ui);
  font-size: 10px;
  letter-spacing: 0.24em;
  color: var(--toxic);
}

#caText {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 12px;
  color: #dcdcdc;
}

#copyCa {
  padding: 0.45rem 0.75rem;
  background: var(--toxic);
  color: #061000;
  font-family: var(--ui);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-core {
  position: relative;
  width: min(520px, 100%);
  margin: 0 auto;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  animation: core-breathe 3.8s ease-in-out infinite;
}

.core-glow {
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(157, 255, 28, 0.45), transparent 62%);
  filter: blur(18px);
  animation: pulse 2.8s ease-in-out infinite;
}

.orbit-text {
  position: absolute;
  inset: 0;
  animation: spin-orbit 28s linear infinite;
}

.orbit-text text {
  fill: var(--toxic);
  font-family: var(--ui);
  font-size: 13px;
  letter-spacing: 7px;
}

.core-logo {
  width: 68%;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 28px rgba(157, 255, 28, 0.35));
  transform-style: preserve-3d;
  transition: transform 0.12s ease;
}

.hero-pills {
  display: flex;
  gap: 0.8rem;
  margin-top: 3rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.pill {
  min-width: 150px;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(157, 255, 28, 0.16);
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.8), rgba(8, 8, 8, 0.5));
}

.pill img {
  width: 18px;
  height: 18px;
  margin-bottom: 0.5rem;
  filter: grayscale(1) brightness(2);
}

.pill strong {
  display: block;
  font-family: var(--ui);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
}

.pill span {
  color: #8d8d8d;
  font-size: 12px;
}

/* about */
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.about-card {
  padding: 1.6rem;
  background:
    linear-gradient(180deg, rgba(157, 255, 28, 0.06), transparent 28%),
    rgba(12, 12, 12, 0.72);
  border: 1px solid rgba(157, 255, 28, 0.12);
  position: relative;
  overflow: visible;
}

.about-card::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--toxic), transparent);
}

.about-card::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 0;
  width: 3px;
  height: 18px;
  background: var(--toxic);
  border-radius: 0 0 4px 4px;
  box-shadow: 0 18px 0 -1px var(--toxic), 0 28px 10px -4px var(--glow);
  animation: drip 2.8s ease-in-out infinite;
}

@keyframes drip {
  0%, 100% { height: 14px; opacity: 0.7; }
  50% { height: 22px; opacity: 1; }
}

.about-card h3 {
  font-family: var(--ui);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
  margin-bottom: 0.8rem;
  color: var(--toxic);
}

.about-card p {
  color: #cfcfcf;
  line-height: 1.7;
}

.manifesto {
  margin-top: 2.4rem;
  padding: 2.2rem 2rem;
  border-left: 4px solid var(--toxic);
  background: rgba(8, 8, 8, 0.6);
}

.manifesto p {
  font-family: var(--display);
  font-size: clamp(1.4rem, 3.4vw, 2.5rem);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.manifesto span {
  display: block;
  margin-top: 0.6rem;
  color: var(--mist);
}

/* buy */
.buy-rail {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  counter-reset: none;
  position: relative;
}

.buy-rail::before {
  content: "";
  position: absolute;
  top: 58px;
  left: 6%;
  right: 6%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--toxic), transparent);
  opacity: 0.35;
}

.buy-step {
  position: relative;
  padding: 1.4rem 1.2rem 1.5rem;
  background: rgba(10, 10, 10, 0.78);
  border: 1px solid rgba(157, 255, 28, 0.14);
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}

.step-index {
  font-family: var(--ui);
  color: var(--toxic);
  letter-spacing: 0.2em;
  font-size: 11px;
}

.step-icon {
  width: 54px;
  height: 54px;
  margin: 1rem 0;
  display: grid;
  place-items: center;
  background: #111;
  border: 1px solid rgba(157, 255, 28, 0.25);
}

.step-icon img {
  width: 28px;
  height: 28px;
}

.step-icon img[src*="solana.svg"] {
  filter: brightness(0) invert(1);
}

.pill img[src*="solana.svg"] {
  filter: brightness(0) invert(84%) sepia(64%) saturate(450%) hue-rotate(28deg);
}

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

.buy-step h3 {
  font-family: var(--ui);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 14px;
  margin-bottom: 0.55rem;
}

.buy-step p {
  color: #c4c4c4;
  line-height: 1.65;
  font-size: 0.95rem;
}

.step-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--toxic);
  font-family: var(--ui);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.step-link:hover {
  text-shadow: 0 0 10px var(--glow);
}

/* chart */
.chart-shell {
  position: relative;
  padding: 14px;
  background: rgba(8, 8, 8, 0.7);
  border: 1px solid rgba(157, 255, 28, 0.2);
}

.chart-corners::before,
.chart-corners::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  border: 2px solid var(--toxic);
}

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

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

.chart-mount {
  min-height: 560px;
  background: #0b0b0b;
}

.chart-mount iframe {
  width: 100%;
  height: 560px;
  border: 0;
}

.chart-wait {
  min-height: 560px;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--mist);
  font-family: var(--ui);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 12px;
  padding: 2rem;
}

.chart-open {
  margin-top: 1.2rem;
}

/* join */
.join {
  padding-top: 2rem;
}

.join-frame {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  border: 1px solid rgba(157, 255, 28, 0.2);
}

.join-banner {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.join-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.62) 0%, rgba(5, 5, 5, 0.18) 52%, rgba(5, 5, 5, 0.42) 100%),
    radial-gradient(circle at 50% 60%, rgba(157, 255, 28, 0.08), transparent 50%);
}

.join-copy {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 5rem 6vw;
}

.join-copy h2 {
  margin-bottom: 1rem;
  text-shadow: 0 0 24px rgba(0, 0, 0, 0.8);
}

.join-copy p {
  color: #f0f0f0;
  font-size: 1.1rem;
  line-height: 1.6;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.85);
}

.join-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

/* footer */
.foot {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 2rem 6vw 3rem;
  border-top: 1px solid rgba(157, 255, 28, 0.12);
}

.foot-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.foot-brand img {
  width: 44px;
  animation: breathe 4s ease-in-out infinite;
}

.foot-brand strong {
  display: block;
  font-family: var(--display);
  text-transform: uppercase;
  font-size: 13px;
}

.foot-brand span,
.foot-note {
  color: #8a8a8a;
  font-size: 12px;
}

.foot-links {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

.foot-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--ui);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.foot-links img {
  width: 14px;
  height: 14px;
}

.foot-links a:hover {
  color: var(--toxic);
}

/* motion */
.glitch {
  position: relative;
}

.glitch:hover::before,
.glitch:hover::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
}

.glitch:hover::before {
  color: #7cff00;
  transform: translate(2px, -1px);
  clip-path: inset(0 0 55% 0);
}

.glitch:hover::after {
  color: #d7ff8a;
  transform: translate(-2px, 1px);
  clip-path: inset(55% 0 0 0);
}

.title-glow {
  text-shadow: 0 0 28px rgba(157, 255, 28, 0.28);
}

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

.delay-1 { animation-delay: 0.12s; }
.delay-2 { animation-delay: 0.24s; }
.delay-3 { animation-delay: 0.36s; }

@keyframes spin-burst {
  to { transform: translate(-50%, -42%) rotate(360deg); }
}

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

.orbit-text {
  transform-origin: 50% 50%;
}

@keyframes core-breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.045); }
}

@keyframes breathe {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 16px rgba(157, 255, 28, 0.28));
  }
  50% {
    transform: scale(1.055);
    filter: drop-shadow(0 0 42px rgba(157, 255, 28, 0.72));
  }
}

@keyframes pulse {
  0%, 100% { opacity: 0.45; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

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

@keyframes grain-shift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-1%, 1%); }
}

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

/* responsive */
@media (max-width: 1080px) {
  .hero-stage,
  .about-grid,
  .buy-rail {
    grid-template-columns: 1fr 1fr;
  }

  .buy-rail::before {
    display: none;
  }
}

@media (max-width: 820px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1.2rem 6vw 1.6rem;
    background: rgba(5, 5, 5, 0.96);
    border-bottom: 1px solid rgba(157, 255, 28, 0.2);
  }

  .nav.open .nav-links {
    display: flex;
  }

  .nav-burger {
    display: grid;
  }

  .nav .btn-toxic {
    display: none;
  }

  .hero-stage,
  .about-grid,
  .buy-rail {
    grid-template-columns: 1fr;
  }

  .hero-core {
    width: min(360px, 88vw);
    order: -1;
  }

  .hero,
  .about,
  .buy,
  .chart,
  .join {
    padding: 3.4rem 5vw;
  }

  .join-frame {
    min-height: 520px;
  }

  body.has-cursor {
    cursor: auto;
  }

  body.has-cursor .cursor-ring,
  body.has-cursor .cursor-dot {
    display: none;
  }
}

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