/* ───────── Token grid + card ───────── */

.hero {
  padding: clamp(56px, 6vw, 120px) 20px clamp(24px, 10vw, 48px);
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
  position: relative; z-index: 1;
}
.hero-eyebrow {
  color: #fff;
  opacity: 0.3;
  font-size: clamp(20px, 2vw, 28px);
  margin: 0 0 18px;
  letter-spacing: 8px;
  font-family: var(--font-latin);
  font-weight: 300;
}
.hero-title {
  color: #fff;
  font-family: var(--font-cjk);
  font-weight: 200;
  font-size: clamp(38px, 5vw, 60px);
  letter-spacing: 0.08em;
  margin: 0;
  line-height: 1.1;
}
.hero-desc {
  margin: 24px auto 0;
  max-width: 680px;
  color: rgba(255,255,255,0.6);
  font-size: 16px;
  line-height: 1.9;
  font-weight: 300;
  letter-spacing: 0.04em;
  font-family: var(--font-cjk);
}

.tokens {
  max-width: 1440px;
  margin: 30px auto ;
  padding: 0 clamp(20px, 4vw, 56px);
  display: grid;
  gap: clamp(20px, 2.5vw, 32px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  position: relative; z-index: 1;
}
@media (max-width: 1100px) { .tokens { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 680px)  { .tokens { grid-template-columns: 1fr; } }

.token-card {
  position: relative;
  display: flex; flex-direction: column;
  width: 100%;
  /*background: linear-gradient(180deg, rgba(35,26,84,0.55) 0%, rgba(21,15,50,0.35) 100%);*/
  border-radius: 24px;
  padding: clamp(24px, 2.4vw, 36px);
  padding-top: 70px;
  margin-top: 100px;
  scroll-margin-top: 100px;
}
.token-card .glow {
  position: absolute; top: -60px; left: 50%; transform: translateX(-50%);
  width: 360px; height: 360px;
  border-radius: 50%;
  pointer-events: none;
}
.token-card .logo-float {
  position: absolute;
  top: -60px; left: 50%; transform: translateX(-50%);
  width: 120px; height: 120px;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
}
.token-card .logo-float svg,
.token-card .logo-float img { width: 100px; height: 100px; display: block; }
.token-card .index-marker {
  position: absolute; top: 18px; right: 22px;
  font-family: var(--font-latin); font-size: 11px; font-weight: 300;
  color: rgba(255,255,255,0.32); letter-spacing: 0.3em;
}

.token-name-row {
  display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap;
  justify-content: center;
}
.token-symbol {
  font-family: var(--font-latin);
  font-weight: 400; font-size: 36px;
  letter-spacing: 0.04em; line-height: 1;
}
.token-name {
  font-family: var(--font-latin), var(--font-cjk);
  font-weight: 300; font-size: 22px;
  color: #fff; line-height: 1.1; letter-spacing: 0.02em;
}
.token-name-zh {
  margin-top: 6px;
  color: rgba(255,255,255,0.5);
  font-size: 16px; letter-spacing: 0.1em;
  font-family: var(--font-cjk);
  text-align: center;
}

.token-chains {
  margin-top: 20px;
  display: flex; flex-wrap: wrap; gap: 6px;
  align-items: center; justify-content: center;
}
.chain-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px; border-radius: 100px;
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.78);
  font-size: 12px; font-weight: 400; letter-spacing: 0.04em;
  font-family: var(--font-latin), var(--font-cjk);
  white-space: nowrap;
}
.chain-tag .dot {
  width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0;
}

.token-paragraphs {
  display: flex; flex-direction: column; gap: 14px;
  flex: 1;
  margin-top: 24px;
}
.token-paragraphs p {
  margin: 0;
  font-family: var(--font-cjk);
  font-weight: 300; font-size: 16px;
  line-height: 1.9;
  color: rgba(255,255,255,0.78);
  letter-spacing: 0.02em;
}

.token-links {
  margin-top: 24px; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-around; gap: 8px;
  flex-wrap: wrap;
}
.token-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.78);
  font-size: 16px; font-weight: 400; letter-spacing: 0.04em;
  font-family: var(--font-latin), var(--font-cjk);
  transition: color 0.2s var(--ease-out);
  white-space: nowrap;
}
.token-link .ic { display: inline-flex; width: 14px; height: 14px; }
.token-link:hover { color: var(--link-accent, #fff); }
.token-link:hover .label { text-decoration: underline; text-underline-offset: 4px; }
