/* ============================================================
   STOCKCAT — Robinhood-dark trading floor theme
   ============================================================ */

:root {
  --bg: #0b0f14;
  --bg-2: #0f151d;
  --bg-3: #131b25;
  --panel: rgba(19, 27, 37, 0.72);
  --line: rgba(0, 200, 5, 0.14);
  --line-soft: rgba(255, 255, 255, 0.07);
  --green: #00c805;
  --green-bright: #35e65c;
  --green-deep: #00934a;
  --red: #ff5000;
  --white: #f4f7f5;
  --muted: #93a3ae;
  --font-display: "Sora", sans-serif;
  --font-mono: "JetBrains Mono", monospace;
  --radius: 18px;
  --nav-h: 76px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 40px); }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-display);
  overflow-x: hidden;
  line-height: 1.6;
}

::selection { background: var(--green); color: #04130a; }

/* ---------- scrollbar ---------- */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #1e2a37; border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--green-deep); }

/* ============================================================
   BACKGROUND LAYERS
   ============================================================ */

#candle-bg {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: -3;
  opacity: 0.5;
}

.grid-overlay {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(0, 200, 5, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 200, 5, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, black 40%, transparent 100%);
}

.glow-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  z-index: -2;
  pointer-events: none;
  opacity: 0.35;
}

.orb-a {
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(0, 200, 5, 0.35), transparent 70%);
  top: -180px; right: -120px;
  animation: orb-drift 16s ease-in-out infinite alternate;
}

.orb-b {
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(0, 147, 74, 0.3), transparent 70%);
  bottom: -160px; left: -140px;
  animation: orb-drift 20s ease-in-out infinite alternate-reverse;
}

@keyframes orb-drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-60px, 50px) scale(1.15); }
}

#cursor-glow {
  position: fixed;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 200, 5, 0.07), transparent 65%);
  pointer-events: none;
  z-index: -1;
  transform: translate(-50%, -50%);
  transition: opacity 0.4s;
}

/* ============================================================
   SHARED
   ============================================================ */

.section { position: relative; padding: 120px 24px; }
.section-inner { max-width: 1180px; margin: 0 auto; }

.section-tag {
  font-family: var(--font-mono);
  color: var(--green);
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 56px;
  text-transform: uppercase;
}

.green-glow {
  background: linear-gradient(180deg, var(--green-bright), var(--green) 55%, var(--green-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 22px rgba(0, 200, 5, 0.45));
}

.stroke {
  color: transparent;
  -webkit-text-stroke: 2px var(--white);
}

.mono { font-family: var(--font-mono); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: 999px;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s, background 0.25s, color 0.25s;
  white-space: nowrap;
}

.btn-icon { width: 20px; height: 20px; }

.btn-primary {
  background: linear-gradient(135deg, var(--green-bright), var(--green) 60%, var(--green-deep));
  color: #04130a;
  box-shadow: 0 0 0 1px rgba(53, 230, 92, 0.4), 0 8px 28px rgba(0, 200, 5, 0.35);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 0 0 1px rgba(53, 230, 92, 0.7), 0 14px 40px rgba(0, 200, 5, 0.55);
}
.btn-primary .btn-icon { filter: brightness(0) saturate(100%); }

.btn-outline {
  background: transparent;
  color: var(--white);
  box-shadow: inset 0 0 0 1.5px rgba(0, 200, 5, 0.55);
}
.btn-outline:hover {
  background: rgba(0, 200, 5, 0.1);
  transform: translateY(-3px);
  box-shadow: inset 0 0 0 1.5px var(--green), 0 10px 30px rgba(0, 200, 5, 0.25);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.14); transform: translateY(-2px); }

.btn-small { padding: 10px 18px; font-size: 0.85rem; }
.btn-big { padding: 17px 34px; font-size: 1.02rem; }

/* ---------- reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.34s; }
.reveal.d5 { transition-delay: 0.44s; }
.reveal.d6 { transition-delay: 0.54s; }

.pulse-dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(0, 200, 5, 0.7);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(0, 200, 5, 0.7); }
  70%  { box-shadow: 0 0 0 10px rgba(0, 200, 5, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 200, 5, 0); }
}

/* ============================================================
   NAV
   ============================================================ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(11, 15, 20, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line-soft);
  transition: background 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  background: rgba(11, 15, 20, 0.92);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
}

.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--white);
}
.brand-logo {
  width: 44px; height: 44px;
  border-radius: 12px;
  box-shadow: 0 0 0 1px rgba(0, 200, 5, 0.35), 0 0 18px rgba(0, 200, 5, 0.3);
  transition: transform 0.3s;
}
.brand:hover .brand-logo { transform: rotate(-8deg) scale(1.08); }
.brand-name {
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
}
.brand-name em, .footer-brand em {
  font-style: normal;
  color: var(--green);
}

.nav-links { display: flex; gap: 30px; }
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  position: relative;
  transition: color 0.25s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%; height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }

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

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-burger span {
  width: 24px; height: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}

/* ---------- ticker tape ---------- */
.ticker-tape {
  border-top: 1px solid var(--line-soft);
  overflow: hidden;
  background: rgba(0, 200, 5, 0.04);
  height: 32px;
  display: flex;
  align-items: center;
}
.ticker-track {
  display: flex;
  gap: 42px;
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  animation: ticker-scroll 30s linear infinite;
}
.ticker-track span { color: var(--muted); }
.ticker-track .up { color: var(--green-bright); }
.ticker-track .down { color: var(--red); }
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 90px) 24px 80px;
  position: relative;
}

.hero-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  color: var(--green-bright);
  background: rgba(0, 200, 5, 0.08);
  border: 1px solid rgba(0, 200, 5, 0.3);
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 26px;
}

.hero-title {
  font-size: clamp(2.6rem, 6.4vw, 4.8rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin-bottom: 26px;
}
.hero-title .line { display: block; }

.hero-sub {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 480px;
  margin-bottom: 36px;
}
.hero-sub strong { color: var(--white); }

.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-mono);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--green-bright);
  text-shadow: 0 0 18px rgba(0, 200, 5, 0.5);
}
.stat-label {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.stat-divider { width: 1px; height: 44px; background: var(--line-soft); }

/* ---------- hero visual ---------- */
.hero-visual { position: relative; }

.cat-terminal {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 60px rgba(0, 200, 5, 0.08);
  padding: 0 0 8px;
  transform-style: preserve-3d;
  transition: transform 0.2s ease-out;
}

.terminal-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line-soft);
  font-family: var(--font-mono);
  font-size: 0.78rem;
}
.term-dot { width: 11px; height: 11px; border-radius: 50%; }
.term-dot.red { background: #ff5f57; }
.term-dot.yellow { background: #febc2e; }
.term-dot.green { background: #28c840; }
.term-title { margin-left: 10px; color: var(--muted); letter-spacing: 0.1em; }
.term-price {
  margin-left: auto;
  color: var(--green-bright);
  font-weight: 700;
}

#hero-chart { width: 100%; height: auto; display: block; }

.hero-cat {
  position: absolute;
  bottom: -34px;
  right: -30px;
  width: 190px;
  border-radius: 22px;
  box-shadow: 0 0 0 1px rgba(0, 200, 5, 0.4), 0 24px 60px rgba(0, 0, 0, 0.6), 0 0 44px rgba(0, 200, 5, 0.3);
  transform: rotate(4deg);
}
.float { animation: float 5s ease-in-out infinite; }
@keyframes float {
  0%, 100% { transform: rotate(4deg) translateY(0); }
  50%      { transform: rotate(2deg) translateY(-14px); }
}

.chip {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(11, 15, 20, 0.85);
  border: 1px solid rgba(0, 200, 5, 0.5);
  color: var(--green-bright);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
}
.chip-1 { top: -16px; left: 28px; animation: chip-bob 4s ease-in-out infinite; }
.chip-2 { bottom: 40px; left: -26px; animation: chip-bob 4.6s ease-in-out 0.6s infinite; }
.chip-3 { top: 42%; right: -20px; animation: chip-bob 5.2s ease-in-out 1.1s infinite; }
@keyframes chip-bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.4em;
  color: var(--muted);
}
.scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(var(--green), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50%      { transform: scaleY(0.5); opacity: 0.4; }
}

/* ============================================================
   ABOUT
   ============================================================ */

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.about-card {
  background: var(--panel);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 34px 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.2s ease-out;
  backdrop-filter: blur(10px);
}
.about-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.about-card:hover {
  border-color: rgba(0, 200, 5, 0.45);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45), 0 0 34px rgba(0, 200, 5, 0.12);
}
.about-card:hover::before { opacity: 1; }

.about-card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 200, 5, 0.1);
  border: 1px solid rgba(0, 200, 5, 0.35);
  color: var(--green-bright);
  margin-bottom: 20px;
}
.about-card-icon svg { width: 26px; height: 26px; }

.about-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.about-card p { color: var(--muted); font-size: 0.94rem; }

/* ---------- token strip ---------- */
.token-strip {
  display: flex;
  align-items: center;
  gap: 34px;
  flex-wrap: wrap;
  background: linear-gradient(135deg, rgba(0, 200, 5, 0.09), rgba(0, 147, 74, 0.05));
  border: 1px solid rgba(0, 200, 5, 0.3);
  border-radius: var(--radius);
  padding: 26px 32px;
}
.token-cell { display: flex; flex-direction: column; gap: 4px; }
.token-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  color: var(--muted);
}
.token-value { font-weight: 800; font-size: 1.15rem; letter-spacing: 0.03em; }
.token-ca { flex: 1; min-width: 220px; }
.token-ca .token-value { font-size: 0.95rem; color: var(--green-bright); word-break: break-all; }

/* ============================================================
   HOW TO BUY
   ============================================================ */

.steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 52px;
}

.step {
  position: relative;
  display: flex;
  gap: 24px;
  background: var(--panel);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 34px 30px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  backdrop-filter: blur(10px);
}
.step:hover {
  border-color: rgba(0, 200, 5, 0.45);
  transform: translateY(-6px);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.45);
}

.step-num {
  font-family: var(--font-mono);
  font-size: 2.4rem;
  font-weight: 700;
  background: linear-gradient(180deg, var(--green-bright), var(--green-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  flex-shrink: 0;
}

.step-body h3 { font-size: 1.2rem; margin-bottom: 8px; }
.step-body p { color: var(--muted); font-size: 0.94rem; }

.step-glow {
  position: absolute;
  bottom: -60px; right: -60px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 200, 5, 0.18), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
}
.step:hover .step-glow { opacity: 1; }

.howtobuy-cta { text-align: center; }

/* ============================================================
   CHART
   ============================================================ */

.chart-frame {
  border: 1px solid rgba(0, 200, 5, 0.3);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-2);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 50px rgba(0, 200, 5, 0.07);
}

.chart-frame-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 22px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  color: var(--muted);
  border-bottom: 1px solid var(--line-soft);
  background: rgba(0, 200, 5, 0.04);
}
.chart-head-icon { width: 18px; height: 22px; }
.chart-live {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--green-bright);
  font-weight: 700;
}

.chart-embed { position: relative; width: 100%; padding-bottom: 62%; }
.chart-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.chart-note {
  margin-top: 20px;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}
.chart-note a { color: var(--green-bright); text-decoration: none; border-bottom: 1px dotted var(--green-deep); }
.chart-note a:hover { color: var(--white); }

/* ============================================================
   JOIN US
   ============================================================ */

.joinus { padding-bottom: 140px; }
.joinus .section-inner { text-align: center; }
.joinus .section-title { margin-bottom: 40px; }

.joinus-banner {
  position: relative;
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  border: 1px solid rgba(0, 200, 5, 0.35);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.55), 0 0 70px rgba(0, 200, 5, 0.12);
  margin-bottom: 40px;
}
.joinus-banner img { width: 100%; display: block; }

.banner-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.14) 50%, transparent 60%);
  transform: translateX(-120%);
  animation: shine 5.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes shine {
  0%       { transform: translateX(-120%); }
  55%, 100% { transform: translateX(120%); }
}

.joinus-sub {
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 44px;
  font-size: 1.05rem;
}

.social-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 860px;
  margin: 0 auto;
}

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  background: var(--panel);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 34px 20px;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.3s, box-shadow 0.3s;
  backdrop-filter: blur(10px);
}
.social-card img { width: 42px; height: 42px; margin-bottom: 8px; transition: transform 0.3s; }
.social-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(0, 200, 5, 0.5);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 200, 5, 0.14);
}
.social-card:hover img { transform: scale(1.15) rotate(-4deg); }
.social-name { color: var(--white); font-weight: 800; letter-spacing: 0.08em; font-size: 0.92rem; }
.social-handle { color: var(--green-bright); font-family: var(--font-mono); font-size: 0.78rem; }

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  border-top: 1px solid var(--line-soft);
  background: rgba(11, 15, 20, 0.8);
  padding: 60px 24px 40px;
}
.footer-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
}
.footer-brand img { width: 40px; height: 40px; border-radius: 11px; }
.footer-disclaimer { color: var(--muted); font-size: 0.82rem; max-width: 560px; }
.footer-socials { display: flex; gap: 18px; }
.footer-socials a {
  width: 46px; height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line-soft);
  transition: transform 0.3s, background 0.3s, border-color 0.3s;
}
.footer-socials img { width: 20px; height: 20px; }
.footer-socials a:hover {
  transform: translateY(-4px);
  background: rgba(0, 200, 5, 0.14);
  border-color: rgba(0, 200, 5, 0.5);
}
.footer-copy { color: #5a6a75; font-size: 0.78rem; font-family: var(--font-mono); }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1020px) {
  .hero-inner { grid-template-columns: 1fr; gap: 90px; }
  .hero-visual { max-width: 560px; margin: 0 auto; width: 100%; }
  .about-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .social-row { grid-template-columns: 1fr; max-width: 420px; }
}

@media (max-width: 800px) {
  .nav-links {
    position: fixed;
    top: calc(var(--nav-h) + 32px);
    right: 0;
    flex-direction: column;
    background: rgba(11, 15, 20, 0.97);
    border-left: 1px solid var(--line-soft);
    border-bottom: 1px solid var(--line-soft);
    padding: 28px 40px;
    gap: 22px;
    transform: translateX(110%);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-burger { display: flex; }
  .nav-actions .btn-ghost { display: none; }

  .section { padding: 80px 18px; }
  .hero { padding-top: calc(var(--nav-h) + 70px); }
  .hero-cat { width: 130px; bottom: -22px; right: -10px; }
  .chip-2 { left: -8px; }
  .chip-3 { right: -6px; }
  .stat-divider { display: none; }
  .hero-stats { gap: 22px; }
  .token-strip { gap: 20px; }
  .chart-embed { padding-bottom: 120%; }
  .scroll-hint { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
