/* ===========================================================
   Memesliquid - dark teal canvas, cyan glow accents
   =========================================================== */

:root {
  --bg: #072722;
  --bg-2: #0a3530;
  --bg-3: #0e413b;
  --bg-soft: #06201c;
  --line: #143d36;
  --line-2: #1a5048;

  --ink: #eaf6f3;
  --ink-2: #b8d3cd;
  --ink-3: #7fa39c;
  --ink-4: #4d706a;

  --mint: #3df0c5;
  --mint-2: #5cf3cf;
  --mint-3: #1fbf9a;
  --mint-soft: #0c3b34;

  --pos: #3df0c5;
  --neg: #ff5d6c;

  --container: 1200px;
  --radius: 8px;
  --radius-lg: 14px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, 'Segoe UI', Arial, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }
a { color: var(--mint); text-decoration: none; }
a:hover { color: var(--mint-2); }
::selection { background: var(--mint); color: #052420; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }

/* ---------------- background ---------------- */
.fx-bg {
  position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden;
  background:
    radial-gradient(1200px 800px at 80% -10%, rgba(61, 240, 197, 0.10), transparent 60%),
    radial-gradient(900px 700px at -10% 95%, rgba(61, 240, 197, 0.06), transparent 60%),
    var(--bg);
}
.fx-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, #000 25%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 25%, transparent 75%);
  opacity: 0.6;
}
.fx-canvas { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.55; }
.fx-spot {
  position: absolute; width: 480px; height: 480px; border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(61,240,197,0.10), rgba(61,240,197,0.03) 35%, transparent 65%);
  filter: blur(16px);
  transform: translate3d(-50%, -50%, 0);
  left: 50%; top: 40%;
  transition: opacity .5s ease;
  mix-blend-mode: screen;
}
body.is-touch .fx-spot { display: none; }
@media (prefers-reduced-motion: reduce) { .fx-canvas, .fx-spot { display: none; } }

.nav, main, .site-footer, .marquee { position: relative; z-index: 2; }

/* ---------------- reveal ---------------- */
.reveal {
  opacity: 0; transform: translateY(16px);
  transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1);
}
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------------- typography ---------------- */
h1, h2, h3 { color: var(--ink); letter-spacing: -0.015em; line-height: 1.05; }
.hero-h1, .big-h2 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 400;
}
.hero-h1 {
  font-size: clamp(56px, 9vw, 132px);
  letter-spacing: -0.04em;
  line-height: 0.96;
  margin-bottom: 30px;
}
.hero-h1 em {
  font-style: italic;
  color: var(--mint);
}
.hero-h1-accent { color: var(--mint); }

.big-h2 {
  font-size: clamp(34px, 5.4vw, 64px);
  letter-spacing: -0.025em;
  line-height: 1.0;
  margin-bottom: 16px;
}
.big-h2 em { font-style: italic; color: var(--mint); }
.big-h2.center { text-align: center; }

h3 { font-family: 'Inter', sans-serif; font-weight: 700; font-size: 18px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--mint);
  margin-bottom: 20px;
}
.eyebrow.gold { color: var(--mint); }
.eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 4px rgba(61, 240, 197, 0.15);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(61, 240, 197, 0.15); }
  50% { box-shadow: 0 0 0 8px rgba(61, 240, 197, 0); }
}

.lede {
  font-size: 18px; color: var(--ink-2); line-height: 1.6;
  max-width: 620px; margin-bottom: 28px;
}

/* ---------------- buttons ---------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 14px; font-weight: 600;
  padding: 11px 18px; border-radius: var(--radius);
  border: 1px solid transparent;
  transition: transform .15s, background .15s, color .15s, border-color .15s, box-shadow .15s;
  white-space: nowrap; letter-spacing: 0.01em;
}
.btn-lg { padding: 15px 24px; font-size: 15px; }
.btn-primary {
  background: var(--mint);
  color: #052420;
  border-color: var(--mint);
  box-shadow: 0 10px 30px rgba(61, 240, 197, 0.25);
}
.btn-primary:hover { transform: translateY(-1px); background: var(--mint-2); border-color: var(--mint-2); color: #052420; box-shadow: 0 14px 36px rgba(61, 240, 197, 0.35); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn-ghost:hover { border-color: var(--mint); color: var(--mint); }
.arrow { display: inline-block; transition: transform .2s; }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------------- nav ---------------- */
.nav {
  position: sticky; top: 0; z-index: 40;
  background: rgba(7, 39, 34, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 28px;
  height: 72px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--ink); }
.brand-mark { width: 34px; height: 34px; border-radius: 50%; }
.brand-text { font-weight: 700; letter-spacing: -0.01em; font-size: 18px; color: var(--ink); }

.primary-nav { display: flex; gap: 32px; flex: 1; justify-content: center; }
.primary-nav a {
  font-size: 13.5px; font-weight: 500; color: var(--ink-2);
  position: relative; padding: 8px 0;
}
.primary-nav a:hover { color: var(--mint); }
.primary-nav a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -1px;
  height: 2px; background: var(--mint);
  transform: scaleX(0); transition: transform .2s;
}
.primary-nav a:hover::after { transform: scaleX(1); }

.header-cta { display: flex; gap: 10px; }

.nav-toggle {
  display: none; background: none; border: 1px solid var(--line-2);
  width: 40px; height: 40px; border-radius: 6px;
  flex-direction: column; align-items: center; justify-content: center; gap: 4px;
}
.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--ink); }

.nav-mobile {
  display: none; flex-direction: column; gap: 14px;
  padding: 20px 28px 26px;
  border-top: 1px solid var(--line);
  background: rgba(7, 39, 34, 0.96);
}
.nav-mobile a { color: var(--ink-2); font-weight: 500; }
.nav-mobile .btn { width: 100%; }
.nav-mobile.open { display: flex; }

/* ---------------- hero ---------------- */
.hero {
  position: relative;
  padding: 80px 0 60px;
  overflow: hidden;
  text-align: center;
}
.hero .container { position: relative; z-index: 2; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--mint);
  padding: 8px 14px; border-radius: 999px;
  background: rgba(61, 240, 197, 0.07);
  border: 1px solid rgba(61, 240, 197, 0.25);
  margin-bottom: 28px;
}
.hero-eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 8px var(--mint);
  animation: pulse 1.6s infinite;
}

.hero-sub {
  font-size: 19px; color: var(--ink-2); line-height: 1.55;
  max-width: 720px; margin: 0 auto 36px;
}
.hero-cta {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-cta.center { justify-content: center; margin-top: 30px; }

.hero-stat-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  max-width: 920px; margin: 0 auto;
}
.hs {
  padding: 22px 18px;
  border-right: 1px solid var(--line);
  text-align: left;
  position: relative;
}
.hs::before {
  content: '';
  position: absolute;
  top: 22px; left: 18px;
  width: 18px; height: 1px;
  background: var(--mint); opacity: 0.55;
}
.hs:last-child { border-right: none; }
.hs-l {
  display: block; font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.14em; color: var(--ink-3);
  font-weight: 600; margin-top: 14px; margin-bottom: 6px;
}
.hs-v {
  display: block;
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 34px; font-weight: 400; color: var(--ink);
  letter-spacing: -0.015em; line-height: 1;
  font-feature-settings: 'tnum' 1;
}

.hero-glow {
  position: absolute;
  top: -120px; left: 50%;
  width: 900px; height: 600px;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(61, 240, 197, 0.16), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
  z-index: 1;
}

/* ---------------- marquee ---------------- */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(10, 53, 48, 0.5);
  backdrop-filter: blur(4px);
  padding: 16px 0;
  position: relative;
}
.marquee::before, .marquee::after {
  content: ''; position: absolute; top: 0; bottom: 0;
  width: 100px; pointer-events: none; z-index: 2;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.marquee::after  { right: 0; background: linear-gradient(270deg, var(--bg), transparent); }
.marquee-track {
  display: inline-flex; align-items: center; gap: 28px;
  white-space: nowrap;
  animation: marqueeScroll 55s linear infinite;
  font-family: 'Inter', sans-serif;
  font-weight: 600; font-size: 14px;
  color: var(--ink);
  letter-spacing: 0.02em;
  font-feature-settings: 'tnum' 1;
}
.mq em { font-style: normal; color: var(--mint); font-weight: 700; margin-left: 6px; }
.marquee .dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--mint); opacity: 0.4;
}
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ---------------- sections ---------------- */
.section { padding: 96px 0; position: relative; }
.section-soft {
  background: rgba(10, 53, 48, 0.4);
  backdrop-filter: blur(4px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-alt {
  background: rgba(6, 32, 28, 0.6);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-head { max-width: 760px; margin-bottom: 56px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head.center .eyebrow { justify-content: center; }
.section-head .lede { margin-top: 10px; }
.section-head.center .lede { margin-left: auto; margin-right: auto; }

/* ---------------- showcase: trade panel ---------------- */
.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: center;
}

.trade-panel {
  background: linear-gradient(180deg, rgba(14, 65, 59, 0.7), rgba(10, 53, 48, 0.85));
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 0 0 1px rgba(61, 240, 197, 0.05);
  overflow: hidden;
  position: relative;
}
.trade-panel::before {
  content: '';
  position: absolute; inset: -1px;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(61, 240, 197, 0.45), transparent 50%);
  z-index: -1;
  filter: blur(16px);
  opacity: 0.5;
}

.tp-top {
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line-2);
  background: rgba(0, 0, 0, 0.2);
}
.tp-pair { display: flex; align-items: center; gap: 12px; }
.tp-pair-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--mint), var(--mint-3));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 18px; color: #052420;
}
.tp-pair-name { font-size: 15px; font-weight: 700; color: var(--ink); }
.tp-pair-tag {
  display: inline-block;
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  background: rgba(61, 240, 197, 0.12); color: var(--mint);
  padding: 2px 7px; border-radius: 4px; margin-left: 6px;
  border: 1px solid rgba(61, 240, 197, 0.25);
  vertical-align: 2px;
}
.tp-pair-sub { font-size: 12px; color: var(--ink-3); margin-top: 2px; }
.tp-stats {
  display: flex; gap: 22px; align-items: flex-end;
}
.tp-stats > div { display: flex; flex-direction: column; gap: 2px; }
.tp-stat-l {
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--ink-3); font-weight: 600;
}
.tp-stat-v {
  font-family: 'JetBrains Mono', 'SF Mono', monospace;
  font-size: 14px; color: var(--ink); font-weight: 600;
  font-feature-settings: 'tnum' 1;
}
.tp-stat-v.pos { color: var(--pos); }
.tp-stat-v.neg { color: var(--neg); }

.tp-body {
  display: grid;
  grid-template-columns: 1fr 260px;
  min-height: 360px;
}
.tp-chart {
  position: relative;
  border-right: 1px solid var(--line-2);
  background:
    radial-gradient(700px 360px at 50% 100%, rgba(61, 240, 197, 0.06), transparent 60%);
}
.tp-chart-svg { width: 100%; height: 320px; display: block; }
.tp-y-axis, .tp-x-axis {
  position: absolute;
  display: flex;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--ink-3);
  pointer-events: none;
}
.tp-y-axis {
  flex-direction: column; justify-content: space-between;
  top: 10px; bottom: 28px; right: 8px; width: 50px;
  text-align: right;
}
.tp-x-axis {
  bottom: 6px; left: 8px; right: 60px;
  justify-content: space-between;
}

.tp-order {
  padding: 16px;
  display: flex; flex-direction: column; gap: 10px;
  background: rgba(0, 0, 0, 0.18);
}
.tp-order-tabs, .tp-order-side {
  display: flex; gap: 6px;
  border: 1px solid var(--line-2);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.25);
  padding: 3px;
}
.tpt {
  flex: 1; padding: 7px 8px;
  background: transparent; border: none;
  font-size: 12px; font-weight: 600; color: var(--ink-3);
  border-radius: 4px;
}
.tpt.active { background: rgba(61, 240, 197, 0.08); color: var(--mint); border: 1px solid rgba(61, 240, 197, 0.25); }
.tpos {
  flex: 1; padding: 10px;
  background: transparent; border: none;
  font-size: 13px; font-weight: 700;
  border-radius: 4px;
  letter-spacing: 0.02em;
}
.tpos.buy { color: var(--ink-2); }
.tpos.sell { color: var(--ink-2); }
.tpos.buy.active {
  background: rgba(61, 240, 197, 0.14); color: var(--mint);
  border: 1px solid rgba(61, 240, 197, 0.3);
}
.tpos.sell.active { background: rgba(255, 93, 108, 0.12); color: var(--neg); border: 1px solid rgba(255, 93, 108, 0.25); }

.tp-order-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line-2);
  border-radius: 6px;
  font-size: 12.5px;
}
.tpor-l { color: var(--ink-3); font-weight: 500; }
.tpor-v {
  color: var(--ink); font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  font-feature-settings: 'tnum' 1;
}
.tp-margin { background: rgba(61, 240, 197, 0.04); border-color: rgba(61, 240, 197, 0.18); }
.tp-margin .tpor-v { color: var(--mint); }

.tp-lev-bar {
  position: relative;
  height: 6px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 3px;
  margin: 2px 4px 4px;
}
.tp-lev-fill {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  background: linear-gradient(90deg, var(--mint), var(--mint-2));
  border-radius: 3px;
}
.tp-lev-knob {
  position: absolute;
  top: 50%; transform: translate(-50%, -50%);
  width: 14px; height: 14px;
  background: var(--mint);
  border: 2px solid var(--bg);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(61, 240, 197, 0.6);
}

.tp-submit {
  margin-top: 4px;
  background: linear-gradient(180deg, var(--mint-2), var(--mint));
  color: #052420;
  border: none;
  padding: 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 20px rgba(61, 240, 197, 0.3);
  cursor: pointer;
}
.tp-foot {
  display: flex; justify-content: space-between;
  padding-top: 8px;
  border-top: 1px solid var(--line-2);
  font-size: 11px; color: var(--ink-3);
}
.tp-foot strong { color: var(--ink); font-weight: 600; font-family: 'JetBrains Mono', monospace; }

/* ---------------- features grid ---------------- */
.grid-3 {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.feature {
  position: relative;
  background: linear-gradient(180deg, rgba(14, 65, 59, 0.75), rgba(10, 53, 48, 0.85));
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: border-color .25s, transform .25s;
  overflow: hidden;
}
.feature::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 60px; height: 1px;
  background: var(--mint); opacity: 0.5;
  transition: width .3s;
}
.feature:hover {
  border-color: rgba(61, 240, 197, 0.4);
  transform: translateY(-3px);
}
.feature:hover::before { width: 100%; }
.feature-num {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 16px; color: var(--mint);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}
.feature h3 { margin-bottom: 10px; font-size: 19px; color: var(--ink); }
.feature p { font-size: 14.5px; color: var(--ink-2); line-height: 1.6; }

/* ---------------- big stat / markets ---------------- */
.big-stat-wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center;
  margin-bottom: 56px;
}
.big-stat-left .lede { max-width: 480px; }

.bsr-card {
  background: linear-gradient(180deg, rgba(14, 65, 59, 0.8), rgba(10, 53, 48, 0.95));
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.bsr-card::before {
  content: '';
  position: absolute; inset: -1px;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(61,240,197,0.4), transparent 50%);
  z-index: -1; filter: blur(14px); opacity: 0.45;
}
.bsr-eyebrow {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--ink-3); font-weight: 700; margin-bottom: 14px;
}
.bsr-pair { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 18px; }
.bsr-pair-name { font-size: 22px; font-weight: 700; color: var(--ink); }
.bsr-pair-change { font-size: 14px; font-weight: 700; }
.bsr-pair-change.pos { color: var(--pos); }
.bsr-pair-change.neg { color: var(--neg); }
.bsr-big {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 72px; line-height: 1;
  letter-spacing: -0.03em; color: var(--ink);
  font-weight: 400;
  font-feature-settings: 'tnum' 1;
}
.bsr-sub { font-size: 13px; color: var(--ink-3); margin-top: 8px; }
.bsr-spark { margin-top: 24px; height: 80px; }
.bsr-spark svg { width: 100%; height: 100%; }

/* markets table */
.markets-table-wrap {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  overflow-x: auto;
}
.markets-table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.markets-table th, .markets-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line-2);
}
.markets-table thead { background: rgba(0, 0, 0, 0.25); }
.markets-table th {
  font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--ink-3); font-weight: 700;
  border-bottom: 1px solid var(--line);
}
.markets-table tbody tr:hover { background: rgba(61, 240, 197, 0.03); }
.markets-table tbody tr:last-child td { border-bottom: none; }
.markets-table td { color: var(--ink); }
.markets-table .num {
  text-align: right;
  font-family: 'JetBrains Mono', 'SF Mono', monospace;
  font-feature-settings: 'tnum' 1;
}
.markets-table .pos { color: var(--pos); }
.markets-table .neg { color: var(--neg); }
.muted td { color: var(--ink-4) !important; font-style: italic; text-align: center !important; background: rgba(0, 0, 0, 0.15); }
.tk {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(135deg, var(--mint), var(--mint-3));
  color: #052420; font-size: 11px; font-weight: 800;
  margin-right: 8px; vertical-align: -3px;
}

/* ---------------- token cards ---------------- */
.token-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  margin-bottom: 36px;
}
.token-card {
  background: linear-gradient(180deg, rgba(14, 65, 59, 0.75), rgba(10, 53, 48, 0.85));
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.token-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 50px; height: 1px;
  background: var(--mint); opacity: 0.5;
}
.tc-eyebrow {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--ink-3); font-weight: 700; margin-bottom: 12px;
}
.tc-big {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 44px; line-height: 1;
  color: var(--mint);
  letter-spacing: -0.02em;
  font-feature-settings: 'tnum' 1;
}
.tc-sub { font-size: 13px; color: var(--ink-3); margin-top: 10px; line-height: 1.4; }

/* dist chart */
.dist-card {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.dist-head { display: flex; justify-content: space-between; align-items: baseline; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; }
.dist-head h3 { font-size: 18px; color: var(--ink); }
.dist-sub { font-size: 12px; color: var(--ink-3); }
.dist-rows { display: flex; flex-direction: column; gap: 14px; }
.dist-row { display: grid; grid-template-columns: 180px 1fr 60px; gap: 16px; align-items: center; font-size: 13.5px; }
.dr-label { color: var(--ink-2); }
.dr-bar {
  height: 10px; background: rgba(0, 0, 0, 0.4); border-radius: 5px; overflow: hidden;
  position: relative;
}
.dr-bar span {
  position: absolute; top: 0; bottom: 0; left: 0;
  background: linear-gradient(90deg, var(--mint), var(--mint-3));
  border-radius: 5px;
  box-shadow: 0 0 12px rgba(61, 240, 197, 0.35);
}
.dr-val {
  text-align: right;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  color: var(--ink);
  font-feature-settings: 'tnum' 1;
}

/* ---------------- foundation ---------------- */
.foundation-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center;
}
.found-list { list-style: none; padding: 0; margin-top: 14px; }
.found-list li {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0;
  font-size: 14.5px;
  color: var(--ink-2);
  border-bottom: 1px solid var(--line-2);
}
.found-list li:last-child { border-bottom: none; }
.check {
  flex-shrink: 0;
  width: 18px; height: 18px;
  background: linear-gradient(135deg, var(--mint), var(--mint-3));
  border-radius: 50%;
  position: relative;
}
.check::after {
  content: '';
  position: absolute;
  top: 5px; left: 4px;
  width: 8px; height: 4px;
  border-left: 2px solid #052420;
  border-bottom: 2px solid #052420;
  transform: rotate(-45deg);
}

.found-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.fs {
  background: linear-gradient(180deg, rgba(14, 65, 59, 0.75), rgba(10, 53, 48, 0.85));
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  position: relative;
}
.fs::before {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 40px; height: 1px;
  background: var(--mint); opacity: 0.55;
}
.fs-l {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--ink-3); font-weight: 700;
  margin-top: 8px; margin-bottom: 10px;
}
.fs-v {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 44px; line-height: 1; color: var(--mint);
  letter-spacing: -0.02em;
  font-feature-settings: 'tnum' 1;
}

/* ---------------- roadmap ---------------- */
.roadmap {
  list-style: none; padding: 0;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px;
  position: relative;
}
.roadmap::before {
  content: '';
  position: absolute;
  top: 38px; left: 8%; right: 8%;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--mint) 0 6px, transparent 6px 14px);
  opacity: 0.35;
  z-index: 0;
}
.rm {
  background: linear-gradient(180deg, rgba(14, 65, 59, 0.75), rgba(10, 53, 48, 0.85));
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: relative;
  z-index: 1;
}
.rm-tag {
  display: inline-block;
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 4px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink-3);
  border: 1px solid var(--line-2);
  font-weight: 700;
  margin-bottom: 16px;
}
.rm.done .rm-tag { background: rgba(61, 240, 197, 0.12); color: var(--mint); border-color: rgba(61, 240, 197, 0.3); }
.rm.active .rm-tag {
  background: rgba(61, 240, 197, 0.2); color: var(--mint);
  border-color: var(--mint);
  box-shadow: 0 0 12px rgba(61, 240, 197, 0.3);
}
.rm h3 { font-size: 16px; margin-bottom: 8px; }
.rm p { font-size: 13.5px; color: var(--ink-2); line-height: 1.55; }

/* ---------------- final CTA ---------------- */
.final-cta {
  background:
    radial-gradient(700px 360px at 50% 0%, rgba(61, 240, 197, 0.12), transparent 60%),
    rgba(7, 39, 34, 0.5);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 96px 0;
}
.final-inner { max-width: 880px; margin: 0 auto; text-align: center; }

/* ---------------- footer ---------------- */
.site-footer {
  background: rgba(5, 25, 22, 0.85);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid; grid-template-columns: 1fr 2fr;
  gap: 64px;
  padding: 56px 0;
}
.footer-brand .brand-mark { width: 30px; height: 30px; }
.footer-tag { font-size: 14px; color: var(--ink-3); margin-top: 14px; max-width: 280px; }
.footer-social { margin-top: 18px; display: flex; gap: 8px; flex-wrap: wrap; }
.social {
  display: inline-flex; align-items: center;
  font-size: 13px; color: var(--ink-2);
  padding: 6px 12px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
}
.social:hover { border-color: var(--mint); color: var(--mint); }

.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-head {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--mint); font-weight: 700; margin-bottom: 14px;
}
.footer-cols a, .footer-cols span {
  display: block; font-size: 13px;
  color: var(--ink-2); margin-bottom: 8px;
}
.footer-cols a:hover { color: var(--mint); }
.footer-cols span { color: var(--ink-3); }

.footer-bottom {
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.35);
  padding: 18px 0;
  font-size: 12px;
  color: var(--ink-3);
}

/* ---------------- toast ---------------- */
.copy-toast {
  position: fixed; bottom: 32px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--bg-3);
  border: 1px solid var(--mint);
  color: var(--mint);
  padding: 11px 22px;
  border-radius: 6px;
  font-size: 13px; font-weight: 600;
  opacity: 0; pointer-events: none;
  transition: all .25s;
  z-index: 200;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.copy-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ---------------- responsive ---------------- */
@media (max-width: 1024px) {
  .showcase-grid, .big-stat-wrap, .foundation-grid { grid-template-columns: 1fr; gap: 48px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .token-grid { grid-template-columns: repeat(2, 1fr); }
  .roadmap { grid-template-columns: repeat(2, 1fr); }
  .roadmap::before { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stat-strip { grid-template-columns: repeat(2, 1fr); }
  .hero-stat-strip .hs:nth-child(2) { border-right: none; }
  .tp-body { grid-template-columns: 1fr; }
  .tp-chart { border-right: none; border-bottom: 1px solid var(--line-2); }
}
@media (max-width: 680px) {
  .primary-nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .section { padding: 64px 0; }
  .hero { padding: 56px 0 40px; }
  .container { padding: 0 20px; }
  .grid-3, .token-grid, .footer-cols { grid-template-columns: 1fr; }
  .roadmap { grid-template-columns: 1fr; }
  .hero-stat-strip { grid-template-columns: 1fr 1fr; }
  .tp-stats { flex-wrap: wrap; gap: 14px; }
  .dist-row { grid-template-columns: 120px 1fr 50px; gap: 10px; font-size: 12px; }
  .found-stats { grid-template-columns: 1fr 1fr; }
}
