@font-face {
  font-family: QingKe;
  src: url("../fonts/qingke.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Syne;
  src: url("../fonts/syne-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Syne;
  src: url("../fonts/syne-800.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #070604;
  --gold: #f3ba2f;
  --gold-2: #ffe58a;
  --ink: #140f08;
  --cream: #f6f0e2;
  --muted: #cbbd9e;
  --line: rgba(243, 186, 47, 0.28);
  --nav: 72px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  color-scheme: dark;
}

body.menu-open { overflow: hidden; }

body {
  margin: 0;
  background:
    radial-gradient(ellipse 50% 24% at 50% -8%, rgba(243, 186, 47, 0.14), transparent 55%),
    var(--bg);
  color: var(--cream);
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; height: auto; }
button, input { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
h1, h2, h3, p, ul, ol, figure, dl, dd { margin: 0; }
ul, ol { padding: 0; list-style: none; }
a { color: inherit; }

[hidden] { display: none !important; }

::selection {
  background: var(--gold);
  color: var(--ink);
}

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

::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(#e3a516, #8a640c);
  border: 3px solid var(--bg);
  border-radius: 99px;
}

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

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

.skip {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 120;
  background: var(--gold);
  color: var(--ink);
  padding: 8px 12px;
  border-radius: 999px;
  font-family: Syne, "Microsoft YaHei", sans-serif;
  font-weight: 700;
  text-decoration: none;
}

.skip:focus { top: 12px; }

.display {
  font-family: QingKe, "PingFang SC", "Microsoft YaHei", sans-serif;
  font-weight: 400;
  font-synthesis: none;
}

.wrap {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.icon {
  width: 1.15em;
  height: 1.15em;
  display: block;
  flex: none;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 90;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, #8a5a08, #fff4c2, var(--gold));
  pointer-events: none;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
}

.nav.is-stuck {
  background: rgba(7, 6, 4, 0.82);
  backdrop-filter: blur(16px);
  border-bottom-color: rgba(243, 186, 47, 0.18);
}

.nav-bar {
  height: var(--nav);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--gold-2);
  font-size: 1.45rem;
  letter-spacing: 0.04em;
  flex: none;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(243, 186, 47, 0.55), 0 0 18px rgba(243, 186, 47, 0.35);
}

.nav-links {
  display: flex;
  gap: 4px;
}

.nav-links a {
  text-decoration: none;
  font-family: Syne, "Microsoft YaHei", sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 8px 12px;
  border-radius: 999px;
}

.nav-links a:hover {
  color: var(--gold-2);
  background: rgba(243, 186, 47, 0.08);
}

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

.nav-toggle {
  display: none;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  color: var(--gold-2);
}

.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-menu { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

.nav-panel { display: none; }

.icon-btn {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--gold-2);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.icon-btn:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-family: Syne, "PingFang SC", "Microsoft YaHei", sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn-gold {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background: linear-gradient(180deg, #ffe58a 0%, #f3ba2f 46%, #e0a20f 100%);
  box-shadow: 0 8px 24px rgba(243, 186, 47, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.btn-gold::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.55) 50%, transparent 70%);
  transform: translateX(-130%);
  animation: shine 3.8s ease-in-out infinite;
  pointer-events: none;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(243, 186, 47, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.btn-gold:focus-visible { outline-color: #fff6dd; }

.btn-ghost {
  color: var(--cream);
  background: rgba(243, 186, 47, 0.06);
  border: 1px solid rgba(243, 186, 47, 0.42);
}

.btn-ghost:hover {
  background: rgba(243, 186, 47, 0.14);
  border-color: rgba(243, 186, 47, 0.75);
  transform: translateY(-2px);
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
  min-height: 100svh;
  padding: 112px 0 96px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 42% at 50% 108%, rgba(243, 186, 47, 0.28), transparent 62%),
    radial-gradient(ellipse 36% 48% at 82% 42%, rgba(243, 186, 47, 0.16), transparent 70%),
    #070604;
}

.dust, .grid-bg, .glow, .pointer-glow, .candles, .floor {
  position: absolute;
  pointer-events: none;
}

.dust {
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.grid-bg {
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(243, 186, 47, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(243, 186, 47, 0.06) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse at 50% 42%, #000 12%, transparent 72%);
  animation: gridmove 32s linear infinite;
}

.glow-a {
  width: 460px;
  height: 460px;
  left: -120px;
  top: 12%;
  background: radial-gradient(circle, rgba(243, 186, 47, 0.16), transparent 68%);
  filter: blur(4px);
}

.glow-b {
  width: 620px;
  height: 620px;
  right: -140px;
  top: 6%;
  background: radial-gradient(circle, rgba(243, 186, 47, 0.24), transparent 66%);
}

.pointer-glow {
  width: 440px;
  height: 440px;
  margin: -220px 0 0 -220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(243, 186, 47, 0.18), transparent 68%);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.candles {
  left: 0;
  right: 0;
  bottom: 28px;
  width: 100%;
  height: 170px;
  opacity: 0.16;
  z-index: 0;
}

.candles rect {
  transform-box: fill-box;
  transform-origin: bottom;
  animation: bar 3.1s ease-in-out infinite;
}

.candles rect:nth-child(odd) { animation-duration: 2.4s; }
.candles rect:nth-child(3n) { animation-delay: 0.35s; }
.candles rect:nth-child(4n) { animation-delay: 0.8s; animation-duration: 3.6s; }

.floor {
  left: 50%;
  bottom: 8px;
  width: min(1100px, 120%);
  height: 120px;
  transform: translateX(-50%);
  z-index: 1;
}

.floor span {
  position: absolute;
  left: 50%;
  bottom: 0;
  border: 1px solid rgba(243, 186, 47, 0.45);
  border-radius: 50%;
  transform: translateX(-50%);
  animation: ring 5s ease-in-out infinite;
}

.floor span:nth-child(1) { width: 34%; height: 28px; }
.floor span:nth-child(2) { width: 58%; height: 48px; animation-delay: 0.35s; opacity: 0.75; }
.floor span:nth-child(3) { width: 86%; height: 72px; animation-delay: 0.7s; opacity: 0.45; }

.hero-grid {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: 28px;
  align-items: center;
}

.hero-copy { min-width: 0; container-type: inline-size; }

.live-row {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-family: Syne, sans-serif;
  font-weight: 700;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  text-transform: uppercase;
  animation: rise 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(243, 186, 47, 0.7);
  animation: ping 1.8s ease-out infinite;
}

.sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(243, 186, 47, 0.7);
}

.hero-title {
  margin-top: 8px;
  font-size: clamp(2.6rem, 8vw, 5.6rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
  white-space: nowrap;
  filter: drop-shadow(0 18px 16px rgba(243, 186, 47, 0.22));
}

@supports (font-size: 1cqi) {
  .hero-title { font-size: clamp(2.4rem, 16cqi, 5.8rem); }
}

.hero-title span {
  display: inline-block;
  color: #ffd84a;
  -webkit-text-stroke: 0.035em #160f05;
  paint-order: stroke fill;
  text-shadow:
    0 0.055em 0 #3b2808,
    0 0.11em 0 #1c1204;
  animation: pop 0.72s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: calc(var(--i) * 0.08s + 0.05s);
}

.hero-en {
  margin-top: 8px;
  font-family: Syne, sans-serif;
  font-weight: 800;
  letter-spacing: 0.34em;
  font-size: 0.78rem;
  color: var(--gold);
  text-indent: 0.34em;
  animation: rise 0.8s 0.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.ticker {
  display: inline-flex;
  margin-top: 14px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(243, 186, 47, 0.12);
  border: 1px solid rgba(243, 186, 47, 0.28);
  color: var(--gold-2);
  font-family: Syne, QingKe, "Microsoft YaHei", sans-serif;
  font-weight: 800;
  font-synthesis: none;
  animation: rise 0.8s 0.28s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-lead {
  margin-top: 16px;
  max-width: 38rem;
  font-size: 1.06rem;
  color: #efe4cc;
  animation: rise 0.8s 0.34s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-lead .sub {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  animation: rise 0.8s 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.chips li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 11px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(243, 186, 47, 0.06);
  color: #f6e7bf;
  font-family: Syne, "Microsoft YaHei", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.chips .icon { width: 14px; height: 14px; color: var(--gold); }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
  animation: rise 0.8s 0.46s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.community-card .hero-actions { animation: none; }

.ca-pill {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  padding: 7px 8px 7px 8px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.35);
  color: var(--cream);
  animation: rise 0.8s 0.54s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.ca-k {
  font-family: Syne, sans-serif;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--ink);
  background: var(--gold);
  border-radius: 999px;
  padding: 5px 8px;
}

.ca-pill code {
  font-family: ui-monospace, "Cascadia Code", "Segoe UI Mono", monospace;
  font-size: 0.92rem;
}

.ca-pill .icon { color: var(--gold); margin-right: 4px; }

.ca-hint {
  margin-top: 8px;
  color: #9c8e72;
  font-size: 0.85rem;
  animation: rise 0.8s 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-art {
  position: relative;
  width: min(100%, 480px);
  margin-inline: auto;
  animation: arrive 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.halo {
  position: absolute;
  inset: -18px;
  border-radius: 48px;
  border: 1px dashed rgba(243, 186, 47, 0.38);
  animation: spin 28s linear infinite;
}

.halo-2 {
  inset: -6px;
  border-style: solid;
  border-color: rgba(243, 186, 47, 0.2);
  animation-direction: reverse;
  animation-duration: 18s;
}

.mascot {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 32px;
  display: block;
  animation: bob 4.8s ease-in-out infinite;
  box-shadow:
    0 0 0 1px rgba(243, 186, 47, 0.55),
    0 24px 60px rgba(0, 0, 0, 0.45),
    0 0 80px rgba(243, 186, 47, 0.28);
}

.mascot-caption {
  position: relative;
  z-index: 1;
  margin-top: 16px;
  text-align: center;
  font-family: Syne, sans-serif;
  font-weight: 800;
  letter-spacing: 0.36em;
  text-indent: 0.36em;
  font-size: 0.72rem;
  color: var(--gold);
}

.floater {
  position: absolute;
  color: var(--gold);
  filter: drop-shadow(0 0 8px rgba(243, 186, 47, 0.85));
  z-index: 2;
  animation: floaty 5.4s ease-in-out infinite;
}

.f1 { width: 26px; top: 4%; left: -2%; }
.f2 { width: 16px; top: 16%; right: 0; animation-delay: -1.1s; }
.f3 { width: 20px; bottom: 18%; left: -4%; animation-delay: -2s; }
.f4 { width: 14px; top: 46%; right: -3%; animation-delay: -2.6s; }
.f5 { width: 12px; bottom: 8%; right: 12%; animation-delay: -3.4s; opacity: 0.8; }
.f6 { width: 22px; top: -2%; right: 18%; animation-delay: -0.6s; opacity: 0.9; }

.marquee {
  position: relative;
  z-index: 2;
  overflow: hidden;
  background: linear-gradient(#ffe9a3, #f3ba2f 42%, #e3a516);
  color: var(--ink);
  border-top: 1px solid #fff6d2;
  border-bottom: 1px solid #8d6410;
  padding: 12px 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: ticker 28s linear infinite;
}

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

.marquee-group {
  display: flex;
  align-items: center;
  gap: 22px;
  padding-right: 22px;
  font-family: Syne, QingKe, "Microsoft YaHei", sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
}

.marquee .display { font-size: 1.45rem; letter-spacing: 0.06em; }
.marquee .icon { width: 14px; height: 14px; }

.poster { padding: 36px 0 8px; }

.poster figure {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(243, 186, 47, 0.45);
  box-shadow: 0 24px 80px rgba(243, 186, 47, 0.12);
}

.poster img {
  width: 100%;
  height: auto;
  display: block;
  transform-origin: 68% 50%;
  animation: ken 22s ease-in-out infinite alternate;
}

.poster figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 38%, rgba(255, 255, 255, 0.16) 50%, transparent 62%);
  transform: translateX(-120%);
  animation: shine 6.5s ease-in-out infinite;
  pointer-events: none;
}

.poster figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 1;
  display: flex;
  gap: 10px;
  align-items: baseline;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(8, 7, 5, 0.72);
  border: 1px solid rgba(243, 186, 47, 0.35);
  backdrop-filter: blur(10px);
  font-size: 0.92rem;
}

.poster figcaption .display { color: var(--gold-2); font-size: 1.15rem; }
.poster figcaption span:last-child {
  color: var(--muted);
  font-family: Syne, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.section { padding: 88px 0; }

.kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-family: Syne, "Microsoft YaHei", sans-serif;
  font-weight: 700;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  text-transform: uppercase;
}

h2.display {
  margin-top: 8px;
  font-size: clamp(2.4rem, 5vw, 4.1rem);
  line-height: 1.12;
  letter-spacing: 0.04em;
  color: #ffe56a;
}

.lede {
  margin-top: 12px;
  max-width: 40rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  margin-top: 32px;
  align-items: stretch;
}

.panel {
  padding: 32px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background:
    radial-gradient(420px 160px at 0% 0%, rgba(243, 186, 47, 0.14), transparent 60%),
    #100e0a;
}

.panel p + p { margin-top: 14px; }
.panel .en {
  color: var(--gold-2);
  font-family: Syne, "Microsoft YaHei", sans-serif;
  font-weight: 700;
}

.traits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.trait {
  height: 100%;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(243, 186, 47, 0.1), rgba(243, 186, 47, 0.03));
  border: 1px solid rgba(243, 186, 47, 0.2);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.trait:hover {
  transform: translateY(-4px);
  border-color: rgba(243, 186, 47, 0.55);
  box-shadow: 0 16px 40px rgba(243, 186, 47, 0.1);
}

.trait .icon { width: 28px; height: 28px; color: var(--gold); }
.trait h3 { margin-top: 12px; font-size: 1.12rem; }
.trait p { margin-top: 6px; color: var(--muted); font-size: 0.92rem; line-height: 1.6; }

.facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 32px;
}

.fact {
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid rgba(243, 186, 47, 0.2);
  background: rgba(243, 186, 47, 0.04);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.fact:hover,
.js .fact.reveal.is-in:hover {
  transform: translateY(-3px);
  border-color: rgba(243, 186, 47, 0.5);
}

.fact.wide { grid-column: 1 / -1; }

.fact dt {
  font-family: Syne, "Microsoft YaHei", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.fact dd {
  margin-top: 6px;
  font-size: 1.12rem;
  color: var(--cream);
}

.ca-row {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-align: left;
  color: var(--cream);
}

.ca-row code {
  font-family: ui-monospace, "Cascadia Code", "Segoe UI Mono", monospace;
  font-size: 0.98rem;
  word-break: break-all;
}

.ca-action {
  flex: none;
  color: var(--ink);
  background: var(--gold);
  border-radius: 999px;
  padding: 6px 12px;
  font-family: Syne, "Microsoft YaHei", sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
}

.token-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.step {
  height: 100%;
  padding: 22px;
  border-radius: 24px;
  background:
    radial-gradient(180px 80px at 100% 0%, rgba(243, 186, 47, 0.14), transparent 70%),
    #100e0a;
  border: 1px solid rgba(243, 186, 47, 0.2);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.step:hover {
  transform: translateY(-4px);
  border-color: rgba(243, 186, 47, 0.5);
}

.step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.step-no {
  font-family: Syne, sans-serif;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--gold);
}

.step-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(243, 186, 47, 0.1);
  color: var(--gold);
}

.step-icon .icon { width: 22px; height: 22px; }
.step h3 { font-size: 1.25rem; }
.step p { margin-top: 8px; color: var(--muted); font-size: 0.95rem; }

.buy-end { margin-top: 22px; }

.note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(243, 186, 47, 0.06);
  border: 1px solid rgba(243, 186, 47, 0.16);
  color: #efe4cc;
}

.note .icon { width: 22px; height: 22px; color: var(--gold); margin-top: 2px; }

.community-card {
  position: relative;
  overflow: hidden;
  padding: 48px 40px;
  border-radius: 32px;
  border: 1px solid var(--line);
  background:
    radial-gradient(520px 240px at 100% 120%, rgba(243, 186, 47, 0.22), transparent 60%),
    linear-gradient(180deg, #161208, #0c0a07);
}

.watermark {
  position: absolute;
  right: -10px;
  bottom: -28px;
  width: 240px;
  height: 240px;
  color: var(--gold);
  opacity: 0.08;
}

.handle {
  display: inline-block;
  margin-top: 14px;
  color: var(--gold);
  font-family: Syne, sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  text-decoration: none;
}

.handle:hover { color: var(--gold-2); }

.footer {
  padding: 28px 0 48px;
  border-top: 1px solid rgba(243, 186, 47, 0.16);
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-bar {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
}

.foot-name {
  color: var(--gold-2);
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.footer p { max-width: 42rem; }
.copy { margin-top: 10px; color: #9c8e72; }

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-family: Syne, "Microsoft YaHei", sans-serif;
  font-weight: 700;
}

.footer-links a { color: var(--gold-2); text-decoration: none; }
.footer-links a:hover { color: #fff6dd; }

.dock { display: none; }

.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 100;
  width: max-content;
  max-width: calc(100% - 32px);
  transform: translateX(-50%) translateY(12px);
  background: #1a1408;
  color: #fff6dd;
  border: 1px solid rgba(243, 186, 47, 0.5);
  padding: 12px 16px;
  border-radius: 999px;
  opacity: 0;
  pointer-events: none;
  text-align: center;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.toast.is-on {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--d, 0s);
}

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

@keyframes rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}

@keyframes pop {
  from { opacity: 0; transform: translateY(28px) scale(0.86) rotate(-4deg); }
  to { opacity: 1; transform: none; }
}

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

@keyframes arrive {
  from { opacity: 0; transform: translateY(28px) scale(0.96); }
  to { opacity: 1; transform: none; }
}

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

@keyframes shine {
  0%, 58% { transform: translateX(-130%); }
  100% { transform: translateX(130%); }
}

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

@keyframes ping {
  70% { box-shadow: 0 0 0 8px rgba(243, 186, 47, 0); }
  100% { box-shadow: 0 0 0 0 rgba(243, 186, 47, 0); }
}

@keyframes gridmove { to { background-position: 72px 72px; } }

@keyframes ring {
  50% { opacity: 0.35; transform: translateX(-50%) scaleX(1.04); }
}

@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(8deg); }
}

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

@keyframes ken { to { transform: scale(1.07); } }

@media (max-width: 980px) {
  .story-grid, .steps { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .nav-links, .nav-buy { display: none; }
  .nav-toggle { display: grid; }

  .nav-panel.is-open {
    display: block;
    background: rgba(7, 6, 4, 0.96);
    border-bottom: 1px solid rgba(243, 186, 47, 0.22);
    padding-bottom: 16px;
  }

  .panel-inner {
    display: grid;
    gap: 4px;
  }

  .panel-inner a {
    text-decoration: none;
    padding: 12px 8px;
    border-radius: 12px;
  }

  .panel-inner a:hover { background: rgba(243, 186, 47, 0.08); }
  .panel-inner .btn { margin-top: 8px; }

  .hero { padding: 96px 0 72px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { order: -1; width: min(100%, 340px); }
  .hero-copy { text-align: center; }
  .live-row, .hero-actions, .chips { justify-content: center; }
  .hero-lead { margin-inline: auto; }
  .ca-pill { display: flex; width: fit-content; max-width: 100%; margin-inline: auto; }
  .ca-hint { text-align: center; }
  .hero-en, .mascot-caption { letter-spacing: 0.22em; text-indent: 0.22em; }

  .traits, .facts { grid-template-columns: 1fr 1fr; }
  .section { padding: 72px 0; }
  .community-card { padding: 32px 22px; }
  .footer-bar { flex-direction: column; }

  .dock {
    display: flex;
    position: fixed;
    z-index: 45;
    left: 12px;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    gap: 8px;
  }

  .dock .btn-gold { flex: 1; }
  body { padding-bottom: 92px; }
  .toast { bottom: 92px; }
}

@media (max-width: 560px) {
  .wrap { width: min(1120px, calc(100% - 28px)); }
  .traits, .facts { grid-template-columns: 1fr; }
  .hero-art { width: min(100%, 280px); }
  .poster figcaption { left: 10px; bottom: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
