:root {
  --green: #a2ff00;
  --green-bright: #39ff14;
  --green-deep: #4e7a00;
  --green-glow: rgba(162, 255, 0, 0.45);
  --black: #000000;
  --white: #ffffff;
  --silver: #c0c0c0;
  --font-display: "Orbitron", sans-serif;
  --font-body: "Montserrat", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--white);
  background: var(--black);
  overflow-x: hidden;
}

#starfield {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.nebula {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 20% 30%, rgba(62, 120, 20, 0.25) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 70%, rgba(162, 255, 0, 0.08) 0%, transparent 45%),
    radial-gradient(ellipse 50% 35% at 50% 100%, rgba(78, 122, 0, 0.35) 0%, transparent 55%);
  animation: nebula-shift 28s ease-in-out infinite alternate;
}

@keyframes nebula-shift {
  0% {
    opacity: 0.85;
    transform: scale(1);
  }
  100% {
    opacity: 1;
    transform: scale(1.05);
  }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.65) 70%, transparent 100%);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(162, 255, 0, 0.12);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: inherit;
}

.brand__logo {
  border-radius: 50%;
  box-shadow:
    0 0 20px var(--green-glow),
    0 0 40px rgba(162, 255, 0, 0.15);
}

.brand__text {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transform: skewX(-8deg);
}

.brand__elon {
  color: var(--white);
  text-shadow:
    0 0 12px rgba(192, 192, 192, 0.6),
    2px 2px 0 var(--black),
    -1px -1px 0 var(--green-deep),
    0 0 24px rgba(162, 255, 0, 0.35);
}

.brand__alien {
  color: var(--green);
  text-shadow:
    0 0 16px var(--green-glow),
    2px 2px 0 var(--black),
    -1px -1px 0 var(--green-deep);
}

.nav {
  display: none;
  gap: 1.75rem;
}

@media (min-width: 768px) {
  .nav {
    display: flex;
  }
}

.nav a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  transition: color 0.2s, text-shadow 0.2s;
}

.nav a:hover {
  color: var(--green);
  text-shadow: 0 0 12px var(--green-glow);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.site-header__social {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.site-header__icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  color: var(--green);
  text-decoration: none;
  border: 1px solid rgba(162, 255, 0, 0.38);
  border-radius: 8px;
  background: rgba(162, 255, 0, 0.06);
  transition:
    color 0.2s,
    border-color 0.2s,
    box-shadow 0.2s,
    background 0.2s;
}

.site-header__icon-link:hover {
  color: var(--green-bright);
  border-color: rgba(162, 255, 0, 0.65);
  background: rgba(162, 255, 0, 0.12);
  box-shadow: 0 0 18px rgba(162, 255, 0, 0.25);
}

.site-header__icon-svg {
  width: 1.15rem;
  height: 1.15rem;
  display: block;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.25rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
}

.btn--outline {
  color: var(--green);
  border: 2px solid var(--green);
  background: rgba(162, 255, 0, 0.06);
  box-shadow: 0 0 20px rgba(162, 255, 0, 0.2);
}

.btn--outline:hover {
  background: rgba(162, 255, 0, 0.15);
  box-shadow: 0 0 28px var(--green-glow);
}

.btn--primary {
  color: var(--black);
  background: linear-gradient(180deg, var(--green) 0%, var(--green-deep) 100%);
  border: none;
  box-shadow:
    0 0 24px var(--green-glow),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 36px var(--green-glow);
}

.btn--ghost {
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.35);
  background: transparent;
}

.btn--ghost:hover {
  border-color: var(--green);
  color: var(--green);
}

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

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5.5rem 1.25rem 4rem;
  overflow: hidden;
}

#about {
  margin-top: 3rem;
  scroll-margin-top: 5.5rem;
}

#narrative {
  scroll-margin-top: 5.5rem;
}

#token {
  scroll-margin-top: calc(5.5rem + 0.2cm);
}

#chart {
  scroll-margin-top: 5.5rem;
}

#how-to-buy {
  scroll-margin-top: 5.5rem;
}

.hero__decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0;
  width: 100%;
  max-width: 960px;
}

.hero__logo-stage {
  position: relative;
  width: min(58vw, 260px);
  height: min(58vw, 260px);
  margin: 0 auto 1.25rem;
}

.hero__logo-glow {
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(162, 255, 0, 0.45) 0%, transparent 65%);
  animation: logo-glow-pulse 3.2s ease-in-out infinite alternate;
  filter: blur(18px);
  z-index: 0;
}

.hero__orbit-ring {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px dashed rgba(162, 255, 0, 0.45);
  box-shadow:
    0 0 12px rgba(162, 255, 0, 0.15),
    inset 0 0 20px rgba(162, 255, 0, 0.06);
  animation: orbit-spin 22s linear infinite;
  z-index: 1;
}

.hero__orbit-ring--reverse {
  inset: -26px;
  border-style: dotted;
  border-color: rgba(57, 255, 20, 0.28);
  animation-duration: 38s;
  animation-direction: reverse;
}

.hero__logo-main {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  animation: logo-float 5s ease-in-out infinite;
  filter: drop-shadow(0 0 22px rgba(162, 255, 0, 0.55));
}

@keyframes logo-float {
  0%,
  100% {
    transform: translateY(0) rotate(-3deg) scale(1);
  }
  33% {
    transform: translateY(-14px) rotate(2deg) scale(1.02);
  }
  66% {
    transform: translateY(-6px) rotate(-1deg) scale(0.98);
  }
}

@keyframes logo-glow-pulse {
  0% {
    opacity: 0.55;
    transform: scale(0.92);
  }
  100% {
    opacity: 1;
    transform: scale(1.08);
  }
}

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

.flyer {
  position: absolute;
}

.flyer--ufo {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 48px;
}

.flyer--ufo .flyer__dome {
  width: 16px;
  height: 11px;
  margin-bottom: -5px;
  z-index: 1;
  background: radial-gradient(circle at 50% 100%, #c0d4e8 0%, #6a7a8c 55%, #3a4555 100%);
  border-radius: 50% 50% 40% 40%;
  box-shadow: 0 -2px 8px rgba(162, 255, 0, 0.35);
}

.flyer--ufo .flyer__disc {
  width: 42px;
  height: 12px;
  flex-shrink: 0;
  background: linear-gradient(180deg, #8a9aad 0%, #4a5566 45%, #2a3544 100%);
  border-radius: 50%;
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.65),
    0 0 20px rgba(162, 255, 0, 0.25),
    inset 0 -2px 4px rgba(162, 255, 0, 0.15);
}

.flyer--ufo .flyer__beam {
  width: 36px;
  height: 44px;
  margin-top: -2px;
  background: linear-gradient(
    180deg,
    rgba(162, 255, 0, 0.55) 0%,
    rgba(57, 255, 20, 0.12) 55%,
    transparent 100%
  );
  clip-path: polygon(15% 0, 85% 0, 100% 100%, 0 100%);
  animation: beam-flicker 2.4s ease-in-out infinite;
  opacity: 0.85;
}

@keyframes beam-flicker {
  0%,
  100% {
    opacity: 0.65;
  }
  50% {
    opacity: 0.95;
  }
}

.flyer--1 {
  top: 14%;
  left: -5%;
  animation: ufo-drift-a 28s ease-in-out infinite;
}

.flyer--2 {
  top: 22%;
  right: -8%;
  animation: ufo-drift-b 34s ease-in-out infinite;
  transform: scale(0.85);
}

@keyframes ufo-drift-a {
  0%,
  100% {
    transform: translate(0, 0) rotate(-4deg);
  }
  25% {
    transform: translate(calc(35vw), 18px) rotate(3deg);
  }
  50% {
    transform: translate(calc(55vw), -10px) rotate(-2deg);
  }
  75% {
    transform: translate(calc(20vw), 12px) rotate(5deg);
  }
}

@keyframes ufo-drift-b {
  0%,
  100% {
    transform: translate(0, 0) scale(0.85) rotate(5deg);
  }
  33% {
    transform: translate(calc(-45vw), 24px) scale(0.85) rotate(-4deg);
  }
  66% {
    transform: translate(calc(-25vw), -16px) scale(0.85) rotate(3deg);
  }
}

.mini-alien {
  position: absolute;
  width: 52px;
  height: auto;
  filter: drop-shadow(0 0 10px rgba(162, 255, 0, 0.55));
  animation: alien-wobble 6s ease-in-out infinite;
}

.mini-alien--a {
  bottom: 18%;
  left: 8%;
  animation-delay: -1s;
}

.mini-alien--b {
  top: 28%;
  right: 10%;
  width: 44px;
  animation-duration: 7.5s;
  animation-delay: -2.5s;
}

.mini-alien--c {
  bottom: 26%;
  right: 18%;
  width: 40px;
  opacity: 0.9;
  animation-duration: 5.5s;
  animation-delay: -0.5s;
}

@keyframes alien-wobble {
  0%,
  100% {
    transform: translateY(0) rotate(-8deg) scale(1);
  }
  50% {
    transform: translateY(-20px) rotate(8deg) scale(1.08);
  }
}

.hero__spark {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 8px 2px rgba(162, 255, 0, 0.8);
  animation: spark-twinkle 2.5s ease-in-out infinite;
}

.hero__spark--1 {
  top: 20%;
  left: 22%;
  animation-delay: 0s;
}

.hero__spark--2 {
  top: 55%;
  right: 28%;
  animation-delay: 0.8s;
}

.hero__spark--3 {
  bottom: 35%;
  left: 38%;
  animation-delay: 1.6s;
}

@keyframes spark-twinkle {
  0%,
  100% {
    opacity: 0.25;
    transform: scale(0.6);
  }
  50% {
    opacity: 1;
    transform: scale(1.3);
  }
}

.hero__ticker {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  font-size: clamp(1rem, 3vw, 1.25rem);
  letter-spacing: 0.35em;
  color: var(--green);
  text-shadow: 0 0 20px var(--green-glow);
}

.hero__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(2.75rem, 12vw, 5rem);
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transform: skewX(-8deg);
  filter: drop-shadow(0 0 40px rgba(162, 255, 0, 0.45));
}

.hero__title-elon {
  color: var(--white);
  text-shadow:
    0 1px 0 var(--silver),
    4px 4px 0 var(--black),
    -2px -2px 0 var(--green-deep),
    0 0 32px rgba(162, 255, 0, 0.45);
}

.hero__title-alien {
  color: var(--green);
  text-shadow:
    4px 4px 0 var(--black),
    -2px -2px 0 var(--green-deep),
    0 0 32px var(--green-glow),
    0 0 64px rgba(57, 255, 20, 0.35);
}

.hero__tagline {
  margin: 1.25rem 0 0;
  font-size: clamp(0.85rem, 2.5vw, 1.05rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.92);
}

.hero__tagline-accent {
  color: var(--green);
  text-shadow: 0 0 18px var(--green-glow);
}

.hero__actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.section {
  position: relative;
  padding: 4rem 1.25rem;
}

.section__inner {
  max-width: 960px;
  margin: 0 auto;
}

.section__heading {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  font-size: clamp(1.5rem, 4vw, 2rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  text-shadow: 0 0 20px var(--green-glow);
}

.section__heading--lightning {
  position: relative;
  animation: lightning-title 3.8s ease-in-out infinite;
}

@keyframes lightning-title {
  0%,
  82%,
  100% {
    color: var(--green);
    text-shadow:
      0 0 18px var(--green-glow),
      0 0 36px rgba(162, 255, 0, 0.22);
  }

  84% {
    color: #ffffff;
    text-shadow:
      0 0 4px #ffffff,
      0 0 18px var(--green-glow),
      0 0 40px rgba(162, 255, 0, 0.55);
  }

  84.7% {
    color: var(--green);
    text-shadow: 0 0 16px var(--green-glow);
  }

  88.5% {
    color: #ffffff;
    text-shadow:
      0 0 6px #ffffff,
      0 0 22px var(--green-glow),
      0 0 42px rgba(162, 255, 0, 0.45);
  }

  89.3% {
    color: var(--green);
    text-shadow: 0 0 18px var(--green-glow);
  }

  91% {
    color: #ffffff;
    text-shadow:
      0 0 4px #ffffff,
      0 0 20px var(--green-glow),
      0 0 36px rgba(162, 255, 0, 0.4);
  }

  91.6% {
    color: var(--green);
    text-shadow:
      0 0 18px var(--green-glow),
      0 0 34px rgba(162, 255, 0, 0.28);
  }
}

.section__heading--buy-wave {
  animation: buy-title-wave 4.5s ease-in-out infinite;
}

@keyframes buy-title-wave {
  0%,
  100% {
    color: var(--green);
    text-shadow:
      0 0 16px var(--green-glow),
      0 0 28px rgba(162, 255, 0, 0.15);
  }

  50% {
    color: #ffffff;
    text-shadow:
      0 0 6px #ffffff,
      0 0 24px var(--green-glow),
      0 0 42px rgba(162, 255, 0, 0.35);
  }
}

.section__heading--community-glow {
  animation: community-title-glow 3.2s ease-in-out infinite;
}

@keyframes community-title-glow {
  0%,
  100% {
    color: var(--green);
    text-shadow:
      0 0 14px var(--green-glow),
      0 0 26px rgba(162, 255, 0, 0.18);
  }

  50% {
    color: #ffffff;
    text-shadow:
      0 0 8px #ffffff,
      0 0 26px var(--green-glow),
      0 0 46px rgba(162, 255, 0, 0.32);
  }
}

.section__heading--narrative {
  animation: narrative-title-glint 5.5s ease-in-out infinite;
}

@keyframes narrative-title-glint {
  0%,
  100% {
    color: var(--green);
    text-shadow:
      0 0 16px var(--green-glow),
      0 0 30px rgba(162, 255, 0, 0.2);
  }

  50% {
    color: #ffffff;
    text-shadow:
      0 0 8px #ffffff,
      0 0 28px var(--green-glow),
      0 0 48px rgba(162, 255, 0, 0.3);
  }
}

.section--narrative .section__inner {
  max-width: 72rem;
}

.narrative-tweets {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(2rem, 5vw, 3rem);
  margin-top: 1rem;
}

.narrative-tweet {
  position: relative;
  margin: 0;
  width: 100%;
  max-width: min(34rem, 100%);
}

@media (min-width: 768px) {
  .narrative-tweet {
    max-width: min(40rem, 100%);
  }
}

@media (min-width: 1100px) {
  .narrative-tweet {
    max-width: min(44rem, 100%);
  }
}

.narrative-tweet__frame {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(162, 255, 0, 0.32);
  background: #070807;
  transform: rotate(-1deg);
  box-shadow:
    6px 10px 0 rgba(12, 22, 8, 0.95),
    12px 18px 32px rgba(0, 0, 0, 0.55),
    0 0 36px rgba(162, 255, 0, 0.14),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  transition:
    transform 0.3s ease,
    border-color 0.25s,
    box-shadow 0.25s;
}

.narrative-tweet:nth-child(even) .narrative-tweet__frame {
  transform: rotate(1.1deg);
}

.narrative-tweet__frame:hover {
  transform: rotate(0deg) translateY(-4px);
  border-color: rgba(162, 255, 0, 0.52);
  box-shadow:
    8px 12px 0 rgba(12, 22, 8, 0.85),
    16px 22px 40px rgba(0, 0, 0, 0.5),
    0 0 52px rgba(162, 255, 0, 0.28),
    inset 0 0 0 1px rgba(255, 255, 255, 0.07);
}

.narrative-tweet:nth-child(even) .narrative-tweet__frame:hover {
  transform: rotate(0deg) translateY(-4px);
}

.narrative-tweet__img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.narrative-tweet__caption {
  margin: 1rem 0 0;
  padding: 0;
  text-align: center;
}

.narrative-tweet__link {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--green);
  text-decoration: none;
  border-bottom: 1px solid rgba(162, 255, 0, 0.35);
  transition:
    color 0.2s,
    border-color 0.2s,
    text-shadow 0.2s;
}

.narrative-tweet__link:hover {
  color: var(--green-bright);
  border-color: var(--green);
  text-shadow: 0 0 12px var(--green-glow);
}

.narrative-note {
  margin: 2rem auto 0;
  max-width: 40rem;
  font-size: 0.84rem;
  line-height: 1.55;
  text-align: center;
  color: rgba(255, 255, 255, 0.48);
}

.narrative-note a {
  color: var(--green);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(162, 255, 0, 0.35);
  transition:
    color 0.2s,
    border-color 0.2s,
    text-shadow 0.2s;
}

.narrative-note a:hover {
  color: var(--green-bright);
  border-color: var(--green);
  text-shadow: 0 0 12px var(--green-glow);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section__heading--typewriter {
  min-height: 1.25em;
}

.typewriter {
  display: inline;
}

.typewriter__cursor {
  display: inline-block;
  width: 0.1em;
  min-width: 3px;
  height: 0.95em;
  margin-left: 0.06em;
  vertical-align: -0.06em;
  background: var(--green);
  box-shadow: 0 0 12px var(--green-glow);
  animation: typewriter-caret 0.85s steps(1, end) infinite;
}

.typewriter__cursor--done {
  animation: none;
  opacity: 0;
  width: 0;
  min-width: 0;
  margin-left: 0;
  transition: opacity 0.45s ease;
}

@keyframes typewriter-caret {
  0%,
  49% {
    opacity: 1;
  }
  50%,
  100% {
    opacity: 0;
  }
}

.section__lead {
  margin: 0 0 2rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  max-width: 640px;
}

.section__lead--narrow {
  max-width: 52rem;
}

.cards {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 700px) {
  .cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  padding: 1.5rem;
  background: linear-gradient(145deg, rgba(20, 30, 15, 0.85) 0%, rgba(0, 0, 0, 0.65) 100%);
  border: 1px solid rgba(162, 255, 0, 0.22);
  border-radius: 12px;
  box-shadow:
    0 0 30px rgba(162, 255, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition:
    border-color 0.25s,
    box-shadow 0.25s,
    transform 0.35s ease;
}

.card:hover {
  border-color: rgba(162, 255, 0, 0.45);
  box-shadow: 0 0 40px rgba(162, 255, 0, 0.12);
}

.card--reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.25s,
    box-shadow 0.25s;
}

.card--reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.section--about .cards .card--reveal:nth-child(1) {
  transition-delay: 0s;
}

.section--about .cards .card--reveal:nth-child(2) {
  transition-delay: 0.08s;
}

.section--about .cards .card--reveal:nth-child(3) {
  transition-delay: 0.16s;
}

.section--about .cards .card--reveal:nth-child(4) {
  transition-delay: 0.06s;
}

.section--about .cards .card--reveal:nth-child(5) {
  transition-delay: 0.14s;
}

.section--about .cards .card--reveal:nth-child(6) {
  transition-delay: 0.22s;
}

.card__symbol {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  margin-bottom: 1rem;
  color: var(--green);
  filter: drop-shadow(0 0 10px rgba(162, 255, 0, 0.35));
}

.card__symbol-svg {
  width: 100%;
  height: 100%;
  animation: symbol-float 4s ease-in-out infinite;
}

.section--about .cards .card:nth-child(2) .card__symbol-svg {
  animation-delay: -0.6s;
}

.section--about .cards .card:nth-child(3) .card__symbol-svg {
  animation-delay: -1.2s;
}

.card__symbol--pulse .card__symbol-svg {
  animation: symbol-pulse-glow 3s ease-in-out infinite;
}

.card__symbol--orbit .card__symbol-svg {
  animation: symbol-orbit-spin 14s linear infinite;
}

.card__symbol--moon .card__symbol-svg {
  animation: symbol-moon-glow 5s ease-in-out infinite;
}

@keyframes symbol-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@keyframes symbol-pulse-glow {
  0%,
  100% {
    filter: drop-shadow(0 0 6px rgba(162, 255, 0, 0.45));
    transform: translateY(0) scale(1);
  }
  50% {
    filter: drop-shadow(0 0 16px rgba(57, 255, 20, 0.7));
    transform: translateY(-5px) scale(1.08);
  }
}

@keyframes symbol-orbit-spin {
  from {
    transform: translateY(-2px) rotate(0deg);
  }
  25% {
    transform: translateY(2px) rotate(90deg);
  }
  50% {
    transform: translateY(-2px) rotate(180deg);
  }
  75% {
    transform: translateY(2px) rotate(270deg);
  }
  to {
    transform: translateY(-2px) rotate(360deg);
  }
}

@keyframes symbol-moon-glow {
  0%,
  100% {
    opacity: 1;
    filter: drop-shadow(0 0 8px rgba(162, 255, 0, 0.35));
    transform: translateY(0);
  }
  50% {
    opacity: 0.88;
    filter: drop-shadow(0 0 16px rgba(162, 255, 0, 0.55));
    transform: translateY(-5px);
  }
}

.card:hover .card__symbol-svg {
  filter: drop-shadow(0 0 14px rgba(162, 255, 0, 0.55));
}

.card__title {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--white);
}

.card__text {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.75);
}

.section--token .token-facts {
  margin: 0;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(162, 255, 0, 0.2);
  border-radius: 12px;
}

.token-facts__row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.token-facts__row:last-child {
  border-bottom: none;
}

.token-facts dt {
  margin: 0;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-deep);
}

.token-facts dd {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
}

.how-buy-block {
  margin-top: 3rem;
  padding-top: 2.25rem;
  border-top: 1px solid rgba(162, 255, 0, 0.2);
}

.how-buy-block .section__heading {
  margin-top: 0;
}

.chart-block {
  margin-top: 3rem;
  padding-top: 2.25rem;
  border-top: 1px solid rgba(162, 255, 0, 0.2);
}

.chart-block__title {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  text-shadow: 0 0 16px var(--green-glow);
}

.chart-block__lead {
  margin: 0 0 1.25rem;
  font-size: 0.98rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.8);
}

.chart-block__open {
  display: inline-block;
  margin-left: 0.35rem;
  color: var(--green);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(162, 255, 0, 0.4);
  transition: color 0.2s, border-color 0.2s, text-shadow 0.2s;
}

.chart-block__open:hover {
  color: var(--green-bright);
  border-color: var(--green);
  text-shadow: 0 0 12px var(--green-glow);
}

.chart-embed {
  position: relative;
  width: 100%;
  min-height: min(480px, 70vh);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(162, 255, 0, 0.28);
  box-shadow:
    0 0 40px rgba(162, 255, 0, 0.08),
    inset 0 0 60px rgba(0, 0, 0, 0.35);
  background: radial-gradient(ellipse at center, rgba(30, 45, 20, 0.5) 0%, rgba(0, 0, 0, 0.85) 70%);
}

.chart-embed__frame {
  display: block;
  width: 100%;
  height: min(480px, 70vh);
  min-height: 360px;
  border: 0;
  background: #0a0e0a;
}

.mono {
  font-family: ui-monospace, monospace;
  font-size: 0.85rem;
  word-break: break-all;
}

.ca-copy {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 0.75rem;
}

.ca-copy__addr {
  flex: 1 1 200px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.95);
}

.ca-copy__btn {
  flex-shrink: 0;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.45rem 0.85rem;
  color: var(--green);
  background: rgba(162, 255, 0, 0.1);
  border: 1px solid rgba(162, 255, 0, 0.45);
  border-radius: 6px;
  transition:
    background 0.2s,
    box-shadow 0.2s,
    border-color 0.2s;
}

.ca-copy__btn:hover {
  background: rgba(162, 255, 0, 0.18);
  box-shadow: 0 0 16px rgba(162, 255, 0, 0.25);
}

.ca-copy__btn.is-copied {
  color: var(--black);
  background: var(--green);
  border-color: var(--green);
  box-shadow: 0 0 20px var(--green-glow);
}

@media (max-width: 480px) {
  .ca-copy {
    flex-direction: column;
    align-items: stretch;
  }

  .ca-copy__btn {
    width: 100%;
  }
}

.how-steps {
  margin: 0 auto;
  padding: 0;
  list-style: none;
  max-width: 720px;
}

.how-steps__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 1.25rem;
  align-items: flex-start;
  padding: 1.35rem 0;
  border-bottom: 1px solid rgba(162, 255, 0, 0.12);
}

.how-steps__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.how-steps__item:first-child {
  padding-top: 0;
}

.how-steps__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  font-size: 1rem;
  color: var(--black);
  background: linear-gradient(145deg, var(--green) 0%, var(--green-deep) 100%);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(162, 255, 0, 0.35);
}

.how-steps__title {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--white);
}

.how-steps__text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}

.how-steps__text strong {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
}

.how-steps__cta {
  margin-top: 1rem;
}

.section--community .section__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section--community .section__lead {
  margin-left: auto;
  margin-right: auto;
}

.social {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  width: 100%;
}

@media (min-width: 600px) {
  .social {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}

.social__link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1.25rem;
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 1px solid rgba(162, 255, 0, 0.35);
  border-radius: 8px;
  background: rgba(162, 255, 0, 0.05);
  transition: color 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.social__link:hover {
  color: var(--green);
  border-color: var(--green);
  box-shadow: 0 0 24px rgba(162, 255, 0, 0.25);
}

.social__icon {
  font-size: 1.15rem;
  color: var(--green);
}

.social__icon--telegram {
  display: inline-flex;
  line-height: 0;
}

.social__icon--telegram svg {
  display: block;
}

.site-footer {
  position: relative;
  z-index: 10;
  padding: 2rem 1.25rem;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  border-top: 1px solid rgba(162, 255, 0, 0.1);
}

@media (max-width: 640px) {
  .site-header .btn--outline {
    display: none;
  }

  .site-header__actions {
    gap: 0.45rem;
  }

  .mini-alien--c {
    opacity: 0.65;
  }

  .flyer--2 {
    opacity: 0.85;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__orbit-ring,
  .hero__orbit-ring--reverse,
  .hero__logo-main,
  .hero__logo-glow,
  .flyer--1,
  .flyer--2,
  .flyer--ufo .flyer__beam,
  .mini-alien,
  .hero__spark {
    animation: none !important;
  }

  .hero__logo-main {
    transform: none;
  }

  .hero__orbit-ring,
  .hero__orbit-ring--reverse {
    opacity: 0.65;
  }

  .card--reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .card__symbol-svg {
    animation: none !important;
  }

  .section__heading--lightning,
  .section__heading--buy-wave,
  .section__heading--community-glow,
  .section__heading--narrative {
    animation: none !important;
    filter: none !important;
    color: var(--green);
    text-shadow: 0 0 20px var(--green-glow);
  }

  .narrative-tweet__frame,
  .narrative-tweet:nth-child(even) .narrative-tweet__frame {
    transform: none !important;
  }

  .narrative-tweet__frame:hover,
  .narrative-tweet:nth-child(even) .narrative-tweet__frame:hover {
    transform: none !important;
  }
}
