:root {
  --bg: #0b0e11;
  --bg-2: #12161c;
  --card: #1e2329;
  --gold: #f0b90b;
  --gold-2: #fcd535;
  --gold-ink: #1a1400;
  --text: #eaecef;
  --muted: #a0a8b0;
  --line: rgba(240, 185, 11, 0.22);
  --green: #0ecb81;
  --red: #f6465d;
  --header: 72px;
  --wrap: 1120px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100%;
  background:
    radial-gradient(900px 480px at 88% -8%, rgba(240, 185, 11, 0.16), transparent 55%),
    radial-gradient(680px 420px at -8% 18%, rgba(246, 70, 93, 0.1), transparent 52%),
    var(--bg);
  color: var(--text);
  font-family: Outfit, "Segoe UI", sans-serif;
  line-height: 1.5;
}

img { max-width: 100%; }

button, input { font: inherit; color: inherit; }

button { cursor: pointer; }

a { color: inherit; }

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

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

[hidden] { display: none !important; }

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

.skip {
  position: absolute;
  left: 16px;
  top: -40px;
  z-index: 90;
  background: var(--gold-2);
  color: var(--gold-ink);
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 700;
}

.skip:focus { top: 12px; }

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

h1, h2, h3, p { margin: 0; }

h2 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.03em;
  max-width: 18ch;
}

.section {
  padding: 88px 0;
  scroll-margin-top: 88px;
  position: relative;
  z-index: 1;
}

.section-lead {
  margin-top: 14px;
  max-width: 62ch;
  color: var(--muted);
  font-size: 18px;
}

.kicker {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.spin-mini {
  width: 14px;
  height: 14px;
  animation: spin 8s linear infinite;
}

/* motion layers */

#fx,
.grid-bg,
.streaks,
.cube-scene {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.grid-bg {
  background-image:
    linear-gradient(rgba(240, 185, 11, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240, 185, 11, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 50% 20%, #000 10%, transparent 72%);
  animation: gridMove 32s linear infinite;
}

.streaks { overflow: hidden; }

.streaks span {
  position: absolute;
  left: -30%;
  width: 160%;
  height: 70px;
  background: linear-gradient(90deg, transparent, rgba(240, 185, 11, 0.18), transparent);
  filter: blur(1px);
}

.streaks span:nth-child(1) { top: 16%; animation: streak 16s ease-in-out infinite; }
.streaks span:nth-child(2) { top: 48%; height: 36px; animation: streak 21s ease-in-out infinite reverse; }
.streaks span:nth-child(3) { top: 74%; height: 110px; opacity: 0.55; animation: streak 26s ease-in-out infinite; }

.cube-scene { perspective: 900px; overflow: hidden; }

.cube {
  --z: 60px;
  position: absolute;
  width: 120px;
  height: 120px;
  transform-style: preserve-3d;
  animation: spinCube 24s linear infinite;
}

.cube span {
  position: absolute;
  inset: 0;
  border: 1.5px solid rgba(240, 185, 11, 0.55);
  background: rgba(240, 185, 11, 0.035);
}

.cube span:nth-child(1) { transform: rotateY(0deg) translateZ(var(--z)); }
.cube span:nth-child(2) { transform: rotateY(180deg) translateZ(var(--z)); }
.cube span:nth-child(3) { transform: rotateY(90deg) translateZ(var(--z)); }
.cube span:nth-child(4) { transform: rotateY(-90deg) translateZ(var(--z)); }
.cube span:nth-child(5) { transform: rotateX(90deg) translateZ(var(--z)); }
.cube span:nth-child(6) { transform: rotateX(-90deg) translateZ(var(--z)); }

.cube.c1 { top: 8%; left: -30px; }
.cube.c2 { --z: 34px; width: 68px; height: 68px; top: 42%; right: -16px; animation-duration: 18s; animation-direction: reverse; }
.cube.c3 { --z: 46px; width: 92px; height: 92px; bottom: 6%; left: 8%; animation-duration: 30s; }

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--gold), #fff6c2);
  z-index: 70;
}

/* intro */

.intro {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  background: #0b0e11;
  animation: introOut 0.45s ease 2.15s forwards;
}

.intro-inner { text-align: center; }

.intro-spin {
  width: 92px;
  margin: 0 auto 18px;
  animation: markIn 1s cubic-bezier(0.2, 0.8, 0.2, 1) both, spin 2.8s linear 0.2s infinite;
  filter: drop-shadow(0 0 18px rgba(240, 185, 11, 0.55));
}

.intro-spin svg { width: 100%; height: auto; display: block; }

.intro-name {
  font-family: "Noto Sans SC", "Microsoft YaHei", sans-serif;
  font-weight: 900;
  font-size: 42px;
  letter-spacing: 0.08em;
  color: var(--gold-2);
}

.intro-sub {
  margin-top: 4px;
  letter-spacing: 0.42em;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
}

.intro-enter {
  margin-top: 22px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--gold-2);
  border-radius: 999px;
  padding: 8px 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
}

.intro.is-done {
  animation: none;
  opacity: 0;
  visibility: hidden;
}

html.skip-intro .intro { display: none; }

/* header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(11, 14, 17, 0.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(11, 14, 17, 0.92);
  border-bottom-color: var(--line);
}

.header-bar {
  min-height: var(--header);
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.brand img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--line);
}

.brand span { display: flex; flex-direction: column; line-height: 1.1; }

.brand small {
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 10px;
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 22px;
  margin-left: auto;
}

.nav-links a {
  text-decoration: none;
  color: #c5ccd3;
  font-size: 14px;
  font-weight: 600;
}

.nav-links a:hover,
.nav-links a.is-active { color: var(--gold-2); }

.header-x { margin-left: 8px; }

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: transparent;
  place-items: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--gold-2);
}

/* ticker */

.ticker {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-block: 1px solid rgba(240, 185, 11, 0.16);
  background: rgba(18, 22, 28, 0.9);
}

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

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

.ticker-group {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 10px 22px;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-2);
}

.ticker-group i {
  font-style: normal;
  color: var(--gold);
  opacity: 0.8;
}

/* hero */

.hero {
  position: relative;
  z-index: 1;
  padding: 42px 0 28px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 36px;
  align-items: center;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(240, 185, 11, 0.7);
  animation: ping 1.8s infinite;
}

.cn {
  display: block;
  margin-top: 8px;
  font-family: "Noto Sans SC", "Microsoft YaHei", sans-serif;
  font-weight: 900;
  font-size: clamp(72px, 9vw, 120px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  background: linear-gradient(180deg, #fff6c8 0%, #fcd535 46%, #f0b90b 72%, #c99400 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 10px 24px rgba(240, 185, 11, 0.22));
}

.en {
  display: block;
  margin-top: 6px;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.lead {
  margin-top: 16px;
  max-width: 42ch;
  color: #d5dbe1;
  font-size: 18px;
}

.ca-panel {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 14px 14px 16px;
  background: rgba(30, 35, 41, 0.92);
  border: 1px solid rgba(240, 185, 11, 0.55);
  border-radius: 14px;
  animation: caGlow 2.8s ease-in-out infinite;
}

.ca-main { min-width: 0; flex: 1; }

.ca-label {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ca-value {
  margin-top: 4px;
  font-family: ui-monospace, "Cascadia Mono", Consolas, monospace;
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 700;
  letter-spacing: 0.01em;
  word-break: break-all;
}

.ca-hint {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 10px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn-gold {
  background: var(--gold-2);
  color: var(--gold-ink);
}

.btn-gold:hover { background: #ffe56a; }

.btn-ghost {
  background: transparent;
  border-color: rgba(240, 185, 11, 0.45);
  color: var(--gold-2);
}

.btn-ghost:hover { background: rgba(240, 185, 11, 0.08); }

.btn-small {
  min-height: 36px;
  padding: 0 14px;
  border-radius: 8px;
}

.copy-btn { min-width: 112px; }

.copy-btn.is-copied {
  background: var(--green);
  border-color: var(--green);
  color: #04140d;
}

.logo-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 340px;
}

.logo-stage::before {
  content: "";
  position: absolute;
  width: 86%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px dashed rgba(240, 185, 11, 0.5);
  animation: spin 28s linear infinite;
}

.logo-stage::after {
  content: "";
  position: absolute;
  width: 46%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 185, 11, 0.38), transparent 68%);
  filter: blur(6px);
}

.mark-spin {
  position: absolute;
  width: 78%;
  height: auto;
  opacity: 0.16;
  animation: spin 22s linear infinite;
}

.bull {
  position: relative;
  z-index: 1;
  width: min(100%, 440px);
  height: auto;
  display: block;
  animation: floaty 5s ease-in-out infinite;
  filter: drop-shadow(0 18px 30px rgba(240, 185, 11, 0.22));
}

.banner-frame {
  position: relative;
  margin-top: 28px;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(240, 185, 11, 0.38);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35), 0 0 40px rgba(240, 185, 11, 0.08);
  background: #000;
}

.banner-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.banner-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 32%, rgba(255, 255, 255, 0.22) 48%, transparent 62%);
  transform: translateX(-120%);
  animation: shine 5.5s ease-in-out infinite;
  pointer-events: none;
}

/* about */

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(240px, 0.7fr);
  gap: 36px;
  align-items: end;
}

.pull {
  margin: 22px 0 0;
  padding: 4px 0 4px 16px;
  border-left: 3px solid var(--gold);
  color: var(--gold-2);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.prose { margin-top: 18px; }

.prose p + p { margin-top: 12px; }

.prose p,
.steps p {
  color: #d7dde3;
  font-size: 18px;
  line-height: 1.65;
}

.steps a,
.text-link {
  color: var(--gold-2);
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  font-weight: 800;
  text-underline-offset: 4px;
}

.stat-row {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.stat-row li {
  padding: 16px 18px;
  background: rgba(30, 35, 41, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
}

.stat-row strong {
  display: block;
  color: var(--gold-2);
  font-size: 22px;
  letter-spacing: -0.03em;
}

.stat-row span { color: var(--muted); font-size: 14px; }

.inline-ca {
  font-family: ui-monospace, "Cascadia Mono", Consolas, monospace;
  color: var(--gold-2);
  font-weight: 700;
}

/* steps */

.steps {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.steps li {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  padding: 18px 16px 20px;
  background: rgba(30, 35, 41, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
}

.steps li:hover { border-color: rgba(240, 185, 11, 0.45); }

.steps li::after {
  content: attr(data-n);
  position: absolute;
  right: 8px;
  bottom: -22px;
  font-size: 84px;
  font-weight: 800;
  line-height: 1;
  color: rgba(240, 185, 11, 0.08);
  pointer-events: none;
}

.step-no {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.steps h3 {
  margin: 10px 0 8px;
  font-size: 20px;
  position: relative;
}

.steps p { position: relative; font-size: 15px; }

.buy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

/* chart */

.chart-shell {
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: #0e1116;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}

.chart-chrome {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  background: #181a20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 13px;
  font-weight: 700;
}

.dex-name { color: var(--gold-2); letter-spacing: 0.08em; text-transform: uppercase; }

.chart-status {
  margin-left: auto;
  color: var(--muted);
  font-weight: 600;
}

.chart-status.is-live { color: var(--green); }

.chart-stage {
  position: relative;
  height: 620px;
  background: #0b0e11;
}

.chart-stage iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.chart-placeholder {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    to top,
    rgba(255, 255, 255, 0.045) 0,
    rgba(255, 255, 255, 0.045) 1px,
    transparent 1px,
    transparent 56px
  );
}

.chart-placeholder::after {
  content: "PREVIEW";
  position: absolute;
  left: 50%;
  top: 40%;
  transform: translate(-50%, -50%) rotate(-8deg);
  font-size: clamp(42px, 8vw, 72px);
  font-weight: 800;
  letter-spacing: 0.18em;
  color: rgba(240, 185, 11, 0.12);
}

.candles {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 18px;
  height: 72%;
  display: flex;
  align-items: flex-end;
  gap: 6px;
}

.candle {
  position: relative;
  flex: 1;
  height: var(--wick);
  max-width: 14px;
  color: var(--red);
  transform-origin: bottom;
  animation: rise 0.7s ease both;
}

.candle.up { color: var(--green); }

.candle::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: currentColor;
}

.candle::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 22%;
  height: var(--body);
  background: currentColor;
  border-radius: 1px;
}

.chart-note {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 20px 18px;
  text-align: center;
  background: linear-gradient(180deg, transparent, rgba(11, 14, 17, 0.92) 55%);
}

.chart-note p { color: var(--text); font-weight: 700; }

.mono {
  margin-top: 6px;
  font-family: ui-monospace, Consolas, monospace;
  color: var(--gold-2);
}

/* gallery */

.gallery {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.shot {
  padding: 0;
  border: 1px solid rgba(240, 185, 11, 0.22);
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  text-align: left;
  color: inherit;
}

.shot img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: #000;
  transition: transform 0.45s ease;
}

.shot:hover img { transform: scale(1.04); }

.shot:hover { border-color: var(--gold); }

.shot span {
  display: block;
  padding: 12px 14px 14px;
  font-weight: 700;
}

/* socials */

.social-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 28px;
  align-items: center;
}

.x-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px;
  text-decoration: none;
  background: rgba(30, 35, 41, 0.92);
  border: 1px solid var(--line);
  border-radius: 18px;
  transition: transform 0.15s ease, border-color 0.15s ease;
}

.x-card:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
}

.x-logo {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--gold-2);
  color: var(--gold-ink);
  flex: none;
}

.x-logo svg { width: 30px; height: 30px; }

.x-copy { display: flex; flex-direction: column; min-width: 0; }

.x-kicker {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.x-url {
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.03em;
  word-break: break-all;
}

.x-go {
  margin-left: auto;
  color: var(--gold-ink);
  background: var(--gold-2);
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 800;
  flex: none;
}

/* footer */

.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(240, 185, 11, 0.16);
  background: #0b0e11;
}

.footer-bar {
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 0;
}

.footer-bar p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-ca {
  margin-left: auto;
  border: 1px solid var(--line);
  background: #1e2329;
  color: var(--gold-2);
  border-radius: 10px;
  min-height: 40px;
  padding: 0 12px;
  font-family: ui-monospace, Consolas, monospace;
  font-weight: 700;
}

/* lightbox */

dialog {
  width: min(920px, 92vw);
  border: 1px solid rgba(240, 185, 11, 0.4);
  border-radius: 16px;
  background: #12161c;
  color: var(--text);
  padding: 14px;
}

dialog::backdrop { background: rgba(0, 0, 0, 0.8); }

.lb-bar, .lb-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.lb-bar p { font-weight: 800; }

.lb-close, .lb-nav button {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--gold-2);
  border-radius: 8px;
  min-height: 36px;
  padding: 0 12px;
  font-weight: 700;
}

#lbImg {
  display: block;
  width: 100%;
  max-height: 72vh;
  object-fit: contain;
  background: #000;
  border-radius: 12px;
  margin: 10px 0;
}

/* keyframes */

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

@keyframes spinCube { to { transform: rotateX(360deg) rotateY(360deg); } }

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

@keyframes streak {
  0%, 100% { transform: translateX(-6%) rotate(-16deg); }
  50% { transform: translateX(6%) rotate(-16deg); }
}

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

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

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

@keyframes ping {
  70% { box-shadow: 0 0 0 8px rgba(240, 185, 11, 0); }
  100% { box-shadow: 0 0 0 0 rgba(240, 185, 11, 0); }
}

@keyframes caGlow {
  0%, 100% { box-shadow: 0 0 0 rgba(240, 185, 11, 0.05); }
  50% { box-shadow: 0 0 28px rgba(240, 185, 11, 0.28); }
}

@keyframes markIn {
  0% { transform: scale(0.45) rotate(-50deg); opacity: 0; }
  100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

@keyframes introOut {
  to { opacity: 0; visibility: hidden; }
}

@keyframes rise {
  from { transform: scaleY(0); }
  to { transform: scaleY(1); }
}

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

  .hero-grid,
  .about-grid,
  .social-grid { grid-template-columns: 1fr; }

  .logo-stage { min-height: 280px; max-width: 420px; margin-inline: auto; }

  .steps { grid-template-columns: 1fr 1fr; }

  h2 { max-width: none; }
}

@media (max-width: 760px) {
  .nav-toggle { display: grid; }

  .header-x { display: none; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin: 0;
    padding: 8px 20px 16px;
    flex-direction: column;
    gap: 4px;
    background: rgba(11, 14, 17, 0.97);
    border-bottom: 1px solid var(--line);
  }

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

  .nav-links a { padding: 10px 0; }

  .site-header { position: sticky; }

  .ca-panel { flex-direction: column; align-items: stretch; }

  .copy-btn { width: 100%; }

  .gallery, .steps { grid-template-columns: 1fr; }

  .chart-stage { height: 480px; }

  .footer-bar { flex-direction: column; align-items: flex-start; }

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

  .x-card { flex-wrap: wrap; }

  .wrap { width: min(var(--wrap), calc(100% - 32px)); }

  .section { padding: 64px 0; }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .intro { display: none; }
}

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-thumb { background: #3a3f47; border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }
