:root {
  --green: #00c805;
  --green-bright: #1cff5a;
  --green-electric: #39ff6e;
  --green-deep: #007a2e;
  --green-dim: rgba(0, 200, 5, 0.14);
  --forest: #0b2416;
  --forest-mid: #12351f;
  --bg: #06140b;
  --bg-2: #08180f;
  --bg-elevated: #0d1c12;
  --black: #030504;
  --gold: #f0b429;
  --gold-soft: #d4a017;
  --gold-dim: rgba(240, 180, 41, 0.16);
  --red: #c8102e;
  --red-seal: #b71c2a;
  --cream: #f3ede0;
  --text: #eaf6ec;
  --text-muted: #8aa890;
  --text-dim: #5d7362;
  --line: rgba(0, 200, 5, 0.18);
  --line-strong: rgba(243, 237, 224, 0.12);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --glow-green: 0 0 32px rgba(0, 200, 5, 0.45);
  --glow-gold: 0 0 40px rgba(240, 180, 41, 0.25);
  --radius: 18px;
  --radius-sm: 10px;
  --radius-pill: 999px;
  --space-xs: 0.5rem;
  --space-sm: 0.85rem;
  --space-md: 1.4rem;
  --space-lg: 2.4rem;
  --space-xl: 4.5rem;
  --space-2xl: 7.5rem;
  --nav-h: 76px;
  --font-display: "Noto Serif SC", "Songti SC", "SimSun", serif;
  --font-en: "Syne", "Arial Black", sans-serif;
  --font-body: "Outfit", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-zh: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.7s;
  --dur-fast: 0.22s;
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: clip;
}

body {
  min-height: 100%;
  position: relative;
  padding-top: var(--nav-h);
  background:
    radial-gradient(1200px 700px at 80% 12%, rgba(0, 200, 5, 0.12), transparent 46%),
    var(--bg);
}

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

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

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

code {
  font-family: "SFMono-Regular", ui-monospace, Menlo, Consolas, monospace;
}

:focus-visible {
  outline: 2px solid var(--green-bright);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 200;
  padding: 0.6rem 1rem;
  background: var(--green);
  color: var(--black);
  font-weight: 700;
  border-radius: var(--radius-sm);
}

.skip-link:focus {
  top: 1rem;
}

.cursor-glow {
  display: none;
}

.section-shell {
  width: min(1180px, calc(100% - 2.4rem));
  margin: 0 auto;
}

#about,
#manifesto,
#token,
#chart,
#community {
  scroll-margin-top: calc(var(--nav-h) + 14px);
}

.section-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1.8rem;
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.section-label span {
  color: var(--green);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
.reveal[data-delay="5"] { transition-delay: 0.4s; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform var(--dur-fast) var(--ease), background var(--dur-fast), box-shadow var(--dur-fast), border-color var(--dur-fast), color var(--dur-fast);
  white-space: nowrap;
}

.btn-lg {
  min-height: 54px;
  padding: 0.85rem 1.55rem;
  font-size: 0.95rem;
}

.btn-xl {
  min-height: 58px;
  padding: 0.95rem 1.8rem;
  font-size: 1.02rem;
}

.btn-mini {
  min-height: 36px;
  padding: 0.35rem 0.8rem;
  font-size: 0.72rem;
  background: var(--green-dim);
  color: var(--green-bright);
  border-color: var(--line);
}

.btn-buy {
  background: var(--green);
  color: #041108;
  box-shadow: var(--glow-green);
}

.btn-buy:hover {
  background: var(--green-bright);
  transform: translateY(-2px);
  box-shadow: 0 0 42px rgba(57, 255, 110, 0.55);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: rgba(0, 200, 5, 0.45);
}

.btn-ghost:hover {
  background: var(--green-dim);
  border-color: var(--green);
  transform: translateY(-2px);
}

.btn-dark {
  background: #101a13;
  color: var(--text);
  border-color: var(--line-strong);
}

.btn-dark:hover {
  border-color: var(--green);
  color: var(--green-bright);
  transform: translateY(-2px);
}

.btn-chart-ghost {
  background: transparent;
  color: var(--text-muted);
  border-color: transparent;
  min-height: 40px;
  padding: 0.4rem 0.7rem;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 600;
}

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

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  height: var(--nav-h);
  background: rgba(5, 8, 7, 0.72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-fast), background var(--dur-fast);
}

.nav.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(5, 8, 7, 0.9);
}

.nav-inner {
  width: min(1180px, calc(100% - 1.6rem));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
}

.nav-logo {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 0 0 1px rgba(0, 200, 5, 0.28);
}

.nav-wordmark {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  margin-left: auto;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-muted);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-left: 0.4rem;
}

.nav-buy {
  min-height: 44px;
  padding: 0.55rem 1.05rem;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  gap: 5px;
  flex-direction: column;
  border-radius: 10px;
  border: 1px solid var(--line);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  transition: transform var(--dur-fast), opacity var(--dur-fast);
}

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

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

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

.hero {
  position: relative;
  min-height: calc(100svh - var(--nav-h));
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

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

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
}

.hero-glow-a {
  width: 58vw;
  height: 58vw;
  right: -8%;
  top: -18%;
  background: radial-gradient(circle, rgba(0, 200, 5, 0.42), transparent 68%);
}

.hero-glow-b {
  width: 38vw;
  height: 38vw;
  left: -10%;
  bottom: -12%;
  background: radial-gradient(circle, rgba(12, 53, 31, 0.9), transparent 70%);
}

.hero-glow-gold {
  width: 28vw;
  height: 28vw;
  right: 12%;
  bottom: 8%;
  background: radial-gradient(circle, rgba(240, 180, 41, 0.16), transparent 70%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 200, 5, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 200, 5, 0.1) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at 70% 40%, #000 22%, transparent 74%);
  animation: grid-shift 28s linear infinite;
}

.hero-floor {
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: -18%;
  height: 48%;
  background-image:
    linear-gradient(rgba(0, 200, 5, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 200, 5, 0.1) 1px, transparent 1px);
  background-size: 70px 46px;
  transform: perspective(500px) rotateX(68deg);
  transform-origin: center bottom;
  mask-image: linear-gradient(#000, transparent 78%);
  animation: floor-scroll 10s linear infinite;
}

.hero-char {
  position: absolute;
  left: -4%;
  top: 6%;
  font-family: var(--font-display);
  font-size: clamp(12rem, 28vw, 24rem);
  font-weight: 900;
  color: rgba(0, 200, 5, 0.045);
  line-height: 0.8;
  user-select: none;
}

.hero-char-sub {
  left: auto;
  right: 2%;
  top: auto;
  bottom: 4%;
  font-size: clamp(8rem, 18vw, 16rem);
  color: rgba(240, 180, 41, 0.05);
}

.hero-bars {
  position: absolute;
  left: 6%;
  bottom: 14%;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 120px;
  opacity: 0.35;
}

.hero-bars i {
  display: block;
  width: 7px;
  border-radius: 2px;
  background: linear-gradient(to top, var(--green-deep), var(--green-electric));
  animation: bar-pulse 3.6s var(--ease) infinite;
}

.hero-spark {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18%;
  width: 100%;
  height: 28%;
  opacity: 0.55;
}

.hero-spark path {
  stroke: var(--green);
  stroke-width: 2;
  stroke-linecap: round;
  fill: none;
  stroke-dasharray: 1600;
  stroke-dashoffset: 280;
  animation: spark-draw 8s var(--ease) infinite;
  filter: drop-shadow(0 0 8px var(--green));
}

.hero-streak {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(57, 255, 110, 0.85), transparent);
  transform: rotate(-18deg);
  animation: streak 7s linear infinite;
}

.hero-streak-1 {
  width: 42vw;
  top: 22%;
  left: -10%;
}

.hero-streak-2 {
  width: 30vw;
  top: 58%;
  right: -8%;
  animation-delay: -3s;
  background: linear-gradient(90deg, transparent, rgba(240, 180, 41, 0.55), transparent);
}

.hero-particles span {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--green-electric);
  opacity: 0.5;
  animation: particle 9s linear infinite;
}

.hero-layout {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 2.4rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: 1rem;
  padding: 2.2rem 0 5rem;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.kicker-tag,
.token-live {
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0.5rem;
  border: 1px solid rgba(240, 180, 41, 0.4);
  border-radius: var(--radius-pill);
  color: var(--gold);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
}

.hero-title-row {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.hero-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(4.4rem, 13vw, 9.4rem);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: 0.04em;
  text-shadow: 0 0 48px rgba(0, 200, 5, 0.18);
}

.seal {
  margin-top: 0.55rem;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: var(--red-seal);
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 900;
  transform: rotate(-8deg);
  box-shadow: inset 0 0 0 3px rgba(243, 237, 224, 0.28);
}

.hero-sub {
  margin: 1.05rem 0 0.7rem;
  font-family: var(--font-en);
  font-size: clamp(1.15rem, 3vw, 1.85rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--cream);
}

.hero-lead {
  max-width: 28rem;
  margin: 0 0 1.6rem;
  color: var(--text-muted);
  font-size: clamp(1rem, 2vw, 1.15rem);
}

.hero-cta,
.token-cta,
.trade-cta,
.community-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-cta {
  max-width: 26rem;
}

.hero-social {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.hero-social a:hover {
  color: var(--green-bright);
}

.social-sep {
  width: 22px;
  height: 1px;
  background: var(--line-strong);
}

.hero-stage {
  position: relative;
  display: grid;
  place-items: end center;
  min-height: 58vh;
}

.hero-stage-glow {
  position: absolute;
  width: 86%;
  height: 64%;
  bottom: 2%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 200, 5, 0.48), rgba(240, 180, 41, 0.12) 42%, transparent 70%);
  filter: blur(18px);
}

.hero-stage-ring {
  position: absolute;
  width: 72%;
  aspect-ratio: 1;
  bottom: 6%;
  border: 1px solid rgba(0, 200, 5, 0.2);
  border-radius: 50%;
  box-shadow: inset 0 0 48px rgba(0, 200, 5, 0.08), var(--glow-gold);
  animation: ring 8s ease-in-out infinite;
}

.hero-mascot {
  position: relative;
  z-index: 2;
  width: min(100%, 520px);
  height: auto;
  max-height: min(74vh, 680px);
  object-fit: contain;
  filter: drop-shadow(0 28px 40px rgba(0, 0, 0, 0.45));
  animation: float 5.4s ease-in-out infinite;
  transform-origin: center bottom;
}

.hero-side-label {
  position: absolute;
  right: 0;
  top: 12%;
  margin: 0;
  writing-mode: vertical-rl;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.4em;
  color: rgba(243, 237, 224, 0.28);
}

.hero-scroll {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 1.2rem;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-dim);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-scroll i {
  width: 1px;
  height: 28px;
  background: linear-gradient(var(--green), transparent);
  animation: scroll-line 1.8s ease-in-out infinite;
}

.marquee {
  border-block: 1px solid var(--line);
  background: #07140d;
  overflow: hidden;
  padding: 0.85rem 0;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  width: max-content;
  font-family: var(--font-en);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-bright);
  animation: marquee 38s linear infinite;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.about {
  padding: var(--space-2xl) 0 var(--space-xl);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1.5rem, 5vw, 5rem);
  align-items: start;
}

.about-eyebrow {
  margin: 0;
  font-family: var(--font-en);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.1;
}

.about-eyebrow-gold {
  color: var(--gold);
}

.about-name {
  margin: 1.4rem 0 0.3rem;
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 1;
}

.about-coming {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-story {
  display: grid;
  gap: 1.05rem;
  padding-top: 0.4rem;
}

.story-line {
  margin: 0;
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  color: #b7cbb8;
  max-width: 36rem;
}

.story-emphasis {
  color: var(--cream);
  font-size: clamp(1.25rem, 2.4vw, 1.55rem);
  font-weight: 600;
}

.story-mark {
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
}

.story-mark span {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--green-bright);
}

.story-pair {
  display: grid;
  gap: 0.25rem;
  margin-top: 0.4rem;
  font-family: var(--font-en);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 800;
  color: var(--cream);
}

.story-pair span:last-child {
  color: var(--green-bright);
}

.banner-break {
  margin: 0;
  height: min(56vw, 540px);
  overflow: hidden;
  position: relative;
}

.banner-break::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--bg) 0%, transparent 18%, transparent 78%, var(--bg) 100%);
  pointer-events: none;
}

.banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.manifesto {
  position: relative;
  padding: var(--space-2xl) 0;
  overflow: hidden;
}

.manifesto-bg,
.community-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.manifesto-glow {
  position: absolute;
  width: 50%;
  height: 60%;
  left: 10%;
  top: 10%;
  background: radial-gradient(circle, rgba(0, 200, 5, 0.12), transparent 70%);
}

.manifesto-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 200, 5, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 200, 5, 0.05) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(90deg, transparent, #000 20%, #000 80%, transparent);
}

.manifesto-quote {
  margin: 0;
}

.manifesto-zh {
  margin: 0 0 0.7rem;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 5.2vw, 3.5rem);
  font-weight: 900;
  line-height: 1.28;
  max-width: 16ch;
}

.manifesto-zh-2 {
  color: var(--gold);
  max-width: 18ch;
}

.manifesto-en {
  margin-top: 2.8rem;
  display: grid;
  gap: 0.35rem;
}

.manifesto-line {
  margin: 0;
  font-family: var(--font-en);
  font-size: clamp(1.5rem, 4vw, 2.6rem);
  font-weight: 800;
}

.manifesto-field {
  color: var(--green-bright);
}

.manifesto-close {
  margin: 2.4rem 0 0;
  color: var(--red);
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
}

.token {
  padding: 0 0 var(--space-2xl);
}

.token-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 2.4rem;
  align-items: center;
}

.token-intro h2 {
  margin: 0 0 0.7rem;
  font-family: var(--font-en);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.1;
}

.token-intro p {
  margin: 0;
  color: var(--text-muted);
  max-width: 28rem;
}

.token-card,
.chart-panel {
  position: relative;
  background: linear-gradient(180deg, rgba(16, 32, 22, 0.92), rgba(8, 16, 12, 0.96));
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.token-card {
  padding: 1.4rem 1.4rem 1.3rem;
}

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

.hud-corners::before {
  top: 10px;
  left: 10px;
  border-right: 0;
  border-bottom: 0;
}

.hud-corners::after {
  right: 10px;
  bottom: 10px;
  border-left: 0;
  border-top: 0;
}

.token-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  color: var(--text-muted);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.token-dl {
  margin: 0;
}

.token-dl > div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 0.8rem;
  padding: 0.85rem 0;
  border-top: 1px solid var(--line);
}

.token-dl dt {
  color: var(--text-dim);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.token-dl dd {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
}

.token-ca-row dd {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem;
}

.token-ca-row code {
  color: var(--gold);
  font-size: 1rem;
}

.btn-copy {
  min-height: 36px;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(240, 180, 41, 0.35);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.btn-copy:hover,
.btn-copy.is-copied {
  background: var(--gold-dim);
}

.token-cta {
  margin-top: 1.15rem;
}

.trade {
  padding: 0 0 var(--space-2xl);
}

.trade-title {
  margin: 0 0 0.55rem;
  font-family: var(--font-en);
  font-size: clamp(2.2rem, 6vw, 4.4rem);
  line-height: 0.95;
}

.trade-lead {
  margin: 0 0 1.4rem;
  color: var(--text-muted);
}

.trade-cta {
  margin-bottom: 2rem;
}

.chart-panel-bar {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--line);
  color: var(--text-muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.chart-ca {
  margin-left: auto;
}

.chart-ca code {
  color: var(--gold);
  text-transform: none;
  letter-spacing: 0;
}

.chart-frame {
  position: relative;
  width: 100%;
  height: min(62vw, 560px);
  min-height: 280px;
  background:
    linear-gradient(180deg, rgba(0, 200, 5, 0.04), transparent 30%),
    repeating-linear-gradient(90deg, rgba(0, 200, 5, 0.05) 0 1px, transparent 1px 48px);
}

.chart-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  background: #0b1210;
}

.community {
  position: relative;
  padding: var(--space-xl) 0 var(--space-2xl);
  overflow: hidden;
}

.community-bg {
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 200, 5, 0.16), transparent 46%),
    radial-gradient(circle at 80% 80%, rgba(199, 16, 46, 0.08), transparent 28%);
}

.community-name {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 10vw, 7.5rem);
  line-height: 0.9;
}

.community-coming {
  margin: 0.4rem 0 1.1rem;
  font-family: var(--font-en);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.community-zh {
  margin: 0 0 1.8rem;
  color: var(--text-muted);
  font-size: clamp(1rem, 2.2vw, 1.25rem);
}

.footer {
  border-top: 1px solid var(--line);
  padding: 1.4rem 0 1.8rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 900;
}

.footer-brand img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  object-fit: cover;
}

.footer-meta {
  margin: 0;
  color: var(--text-dim);
  font-size: 0.85rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.2rem;
  margin-left: auto;
  font-weight: 700;
  font-size: 0.88rem;
}

.footer-links a:hover {
  color: var(--green-bright);
}

@keyframes grid-shift {
  to { background-position: 64px 64px; }
}

@keyframes floor-scroll {
  to { background-position: 0 46px; }
}

@keyframes spark-draw {
  0% { stroke-dashoffset: 1600; opacity: 0.15; }
  20% { opacity: 0.7; }
  70% { stroke-dashoffset: 0; opacity: 0.55; }
  100% { stroke-dashoffset: 0; opacity: 0.1; }
}

@keyframes streak {
  0% { transform: translateX(-20%) rotate(-18deg); opacity: 0; }
  20% { opacity: 1; }
  100% { transform: translateX(140%) rotate(-18deg); opacity: 0; }
}

@keyframes particle {
  0% { transform: translateY(20px); opacity: 0; }
  15% { opacity: 0.6; }
  100% { transform: translateY(-70vh); opacity: 0; }
}

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

@keyframes ring {
  0%, 100% { transform: scale(1); opacity: 0.55; }
  50% { transform: scale(1.06); opacity: 0.9; }
}

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

@keyframes bar-pulse {
  0%, 100% { transform: scaleY(0.7); }
  50% { transform: scaleY(1); }
}

@keyframes scroll-line {
  0% { transform: scaleY(0.4); transform-origin: top; opacity: 0; }
  40% { opacity: 1; }
  100% { transform: scaleY(1); transform-origin: top; opacity: 0; }
}

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

@media (hover: hover) and (pointer: fine) {
  .cursor-glow {
    display: block;
    position: fixed;
    z-index: 1;
    width: 420px;
    height: 420px;
    margin: -210px 0 0 -210px;
    border-radius: 50%;
    pointer-events: none;
    background: radial-gradient(circle, rgba(0, 200, 5, 0.1), transparent 68%);
    transform: translate3d(-50vw, -50vh, 0);
    transition: opacity 0.4s;
  }
}

@media (max-width: 980px) {
  .nav-links {
    position: fixed;
    inset: var(--nav-h) 0 auto 0;
    z-index: 85;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.4rem 1rem 1.1rem;
    background: #08150e;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 40px rgba(0, 0, 0, 0.45);
  }

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

  .nav-links a {
    padding: 0.9rem 0.2rem;
    border-bottom: 1px solid rgba(0, 200, 5, 0.08);
    min-height: 48px;
    display: flex;
    align-items: center;
  }

  .nav-chart {
    justify-content: flex-start;
    padding-left: 0;
  }

  .nav-toggle {
    display: inline-flex;
  }

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

  .banner-break {
    height: min(68vw, 360px);
  }

  .banner-img {
    object-position: 58% 40%;
  }
}

@media (max-width: 820px) {
  .hero-layout {
    grid-template-columns: 1fr;
    align-items: center;
    min-height: calc(100svh - var(--nav-h));
    padding: 1.4rem 0 4.2rem;
  }

  .hero-copy {
    position: relative;
    z-index: 3;
    max-width: 28rem;
    padding-right: 7.5rem;
  }

  .hero-stage {
    position: absolute;
    right: -2%;
    bottom: 6%;
    width: min(48vw, 300px);
    min-height: 0;
    z-index: 1;
    pointer-events: none;
  }

  .hero-stage::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 3;
    background: linear-gradient(90deg, rgba(6, 20, 11, 0.55) 0%, transparent 62%);
  }

  .hero-mascot {
    max-height: min(52vh, 380px);
    width: 100%;
  }

  .hero-side-label {
    display: none;
  }

  .hero-cta {
    max-width: 17.5rem;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-sub {
    letter-spacing: 0.04em;
  }
}

@media (max-width: 640px) {
  :root {
    --nav-h: 68px;
  }

  .section-shell {
    width: min(100% - 1.4rem, 1180px);
  }

  .hero-copy {
    padding-right: 5.5rem;
  }

  .hero-title {
    font-size: clamp(3.4rem, 20vw, 5rem);
  }

  .seal {
    width: 40px;
    height: 40px;
    font-size: 1.3rem;
  }

  .hero-stage {
    width: min(46vw, 220px);
    right: -4%;
    bottom: 10%;
  }

  .hero-mascot {
    max-height: min(42vh, 300px);
  }

  .trade-cta .btn,
  .community-cta .btn,
  .token-cta .btn {
    flex: 1 1 160px;
  }

  .token-dl > div,
  .token-ca-row {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }

  .chart-panel-bar {
    flex-wrap: wrap;
  }

  .chart-ca {
    margin-left: 0;
  }

  .chart-frame {
    height: 68vw;
    min-height: 260px;
  }

  .footer-links {
    margin-left: 0;
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

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

  .hero-grid,
  .hero-floor,
  .hero-spark path,
  .hero-streak,
  .hero-particles span,
  .hero-mascot,
  .hero-stage-ring,
  .kicker-dot,
  .hero-bars i,
  .hero-scroll i,
  .marquee-track {
    animation: none !important;
  }

  .cursor-glow {
    display: none !important;
  }
}
