/* ═══════════════════════════════════════════════
   LUDO CITIES — Design System
   ═══════════════════════════════════════════════ */

:root {
  /* Colours */
  --bg:          #070710;
  --bg-2:        #0D0D1F;
  --bg-3:        #13132A;
  --border:      rgba(255,255,255,0.08);
  --border-2:    rgba(255,255,255,0.15);
  --text:        #FFFFFF;
  --text-2:      #8B8BA7;
  --text-3:      #7A7A96;

  --red:         #FF3B4E;
  --green:       #00D46A;
  --yellow:      #FFD600;
  --blue:        #0091FF;

  --red-glow:    rgba(255, 59, 78, 0.25);
  --green-glow:  rgba(0, 212, 106, 0.25);
  --yellow-glow: rgba(255, 214, 0, 0.25);
  --blue-glow:   rgba(0, 145, 255, 0.25);

  --gold:        #FFB800;
  --grad-cta:    linear-gradient(135deg, #FFD600 0%, #FF8C00 100%);
  --grad-text:   linear-gradient(135deg, #FFD600, #FF3B4E 60%, #0091FF);

  /* Typography */
  --font-head:   'Space Grotesk', system-ui, sans-serif;
  --font-body:   'DM Sans', system-ui, sans-serif;

  /* Spacing */
  --container:   1200px;
  --section-gap: 120px;

  /* Radius */
  --r-sm:  8px;
  --r-md:  16px;
  --r-lg:  24px;
  --r-xl:  32px;

  /* Transitions */
  --ease:  cubic-bezier(0.4, 0, 0.2, 1);
  --fast:  0.15s;
  --mid:   0.3s;
  --slow:  0.6s;
}

/* ─── Reset ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .hero-canvas { display: none; }
}

/* ─── Light Mode ─────────────────────────────── */
[data-theme="light"] {
  --bg:       #F2F2FA;
  --bg-2:     #E6E6F4;
  --bg-3:     #DADAEE;
  --border:   rgba(0,0,0,0.09);
  --border-2: rgba(0,0,0,0.16);
  --text:     #0A0A1C;
  --text-2:   #3A3A5C;
  --text-3:   #6868A0;
}

[data-theme="light"] body {
  background: var(--bg);
  color: var(--text);
}

/* Nav in light mode */
[data-theme="light"] .nav.scrolled {
  background: rgba(242,242,250,0.9);
}

/* Section backgrounds */
[data-theme="light"] .features-section,
[data-theme="light"] .nft-section,
[data-theme="light"] .community-section,
[data-theme="light"] .faq-section {
  background: var(--bg);
}
[data-theme="light"] .roadmap-section,
[data-theme="light"] .seeker-section {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 50%, var(--bg) 100%);
}
[data-theme="light"] .footer {
  background: linear-gradient(180deg, #e8e8f8 0%, var(--bg) 100%);
}
[data-theme="light"] .footer::after {
  background: radial-gradient(ellipse, rgba(255,214,0,0.06) 0%, transparent 70%);
}

/* Hero & game section always dark — they have canvas/video backgrounds */
[data-theme="light"] #hero { background: #070710; }
[data-theme="light"] .game-preview { background: #070710; }

/* Hero content always white (hero is always dark regardless of theme) */
[data-theme="light"] .hero-eyebrow,
[data-theme="light"] .hero-eyebrow .badge-pill,
[data-theme="light"] .hero-subtitle,
[data-theme="light"] .scroll-hint { color: #fff; }

[data-theme="light"] .hero-cta .btn-outline {
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
[data-theme="light"] .hero-cta .btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}

/* Nav links white when floating over the dark hero */
[data-theme="light"] .nav:not(.scrolled) .nav-links a,
[data-theme="light"] .nav:not(.scrolled) .nav-actions .btn-ghost,
[data-theme="light"] .nav:not(.scrolled) .theme-toggle { color: #fff; }
[data-theme="light"] .nav:not(.scrolled) #hamburger span { background: #fff; }
[data-theme="light"] .game-video-overlay {
  background-image:
    linear-gradient(to bottom, #070710 0%, transparent 20%, transparent 80%, #070710 100%),
    linear-gradient(to right,  #070710 0%, transparent 14%, transparent 86%, #070710 100%);
  background-color: rgba(7,7,16,0.62);
}

/* Cards */
[data-theme="light"] .feat-card,
[data-theme="light"] .nft-card,
[data-theme="light"] .comm-card {
  background: #fff;
  border-color: rgba(0,0,0,0.08);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
[data-theme="light"] .rm-content {
  background: #fff;
  border-color: rgba(0,0,0,0.08);
}
[data-theme="light"] .rm-bezel-shroud {
  background: linear-gradient(145deg, rgba(0,0,0,0.06) 0%, rgba(0,0,0,0.02) 40%, rgba(255,255,255,0.5) 100%);
}

/* Scrollbar */
[data-theme="light"] ::-webkit-scrollbar-track { background: var(--bg-2); }
[data-theme="light"] ::-webkit-scrollbar-thumb { background: var(--bg-3); }

/* ─── Theme Toggle Button ─────────────────────── */
.theme-toggle {
  width: 36px; height: 36px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-2);
  color: var(--text-2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--fast), border-color var(--fast), background var(--fast), transform var(--fast);
  flex-shrink: 0;
}
.theme-toggle:hover {
  color: var(--yellow);
  border-color: rgba(255,214,0,0.4);
  background: rgba(255,214,0,0.08);
  transform: rotate(20deg);
}
/* In dark mode: show sun icon, hide moon */
.icon-sun  { display: block; }
.icon-moon { display: none; }
/* In light mode: show moon icon, hide sun */
[data-theme="light"] .icon-sun  { display: none; }
[data-theme="light"] .icon-moon { display: block; }

/* ─── Custom Cursor ──────────────────────────── */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--yellow);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.2s, height 0.2s, background 0.3s;
  mix-blend-mode: difference;
}
@media (hover: none) { .cursor { display: none; } }

/* ─── Scrollbar ──────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--bg-3); border-radius: 3px; }

/* ─── Layout ─────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: var(--section-gap) 0; position: relative; }

/* ─── Navigation ─────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: background var(--mid) var(--ease), backdrop-filter var(--mid) var(--ease);
}
.nav.scrolled {
  background: rgba(7, 7, 16, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.08em;
  white-space: nowrap;
  transition: opacity var(--fast);
}
.nav-logo:hover { opacity: 0.85; }
.nav-logo-img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
}
.nav-links {
  display: flex;
  gap: 32px;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-2);
  transition: color var(--fast);
  letter-spacing: 0.02em;
}
.nav-links a:hover { color: var(--text); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--mid), opacity var(--fast);
}
.nav-mobile {
  display: none;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
}
.nav-mobile ul { display: flex; flex-direction: column; gap: 16px; }
.nav-mobile a { font-size: 1rem; color: var(--text-2); font-weight: 500; }
.nav-mobile .btn { width: 100%; text-align: center; margin-top: 8px; }

/* ─── Buttons ────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.03em;
  transition: all var(--mid) var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: var(--grad-cta);
  color: #0A0700;
  box-shadow: 0 0 24px rgba(255,214,0,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255,214,0,0.45);
}
.btn-outline {
  border: 1.5px solid rgba(255,255,255,0.4);
  color: var(--text);
  background: rgba(7,7,16,0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn-outline:hover {
  border-color: var(--yellow);
  color: var(--yellow);
  background: rgba(255,214,0,0.1);
  transform: translateY(-2px);
}
.btn-ghost {
  color: var(--text-2);
  padding: 10px 16px;
}
.btn-ghost:hover { color: var(--text); }
.btn-xl { padding: 14px 32px; font-size: 1rem; }

/* ─── Badges / Tags ──────────────────────────── */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 50px;
  border: 1px solid var(--border-2);
  background: rgba(255,255,255,0.04);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-2);
}
.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}
.tag-live {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 4px;
  background: var(--green);
  color: #001A0D;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-left: 4px;
}
.tag-now {
  display: inline-flex;
  padding: 2px 8px;
  border-radius: 4px;
  background: var(--yellow);
  color: #1A1000;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  vertical-align: middle;
}
.section-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--yellow);
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* ─── Section Headers ────────────────────────── */
.section-header { max-width: 640px; margin-bottom: 64px; }
.section-header--center { max-width: 600px; margin: 0 auto 64px; text-align: center; }
.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 1.0625rem;
  color: var(--text-2);
  line-height: 1.7;
}
.gradient-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Google Play Button ─────────────────────── */
.btn-gplay {
  display: inline-flex;
  align-items: center;
  transition: transform var(--mid) var(--ease), filter var(--mid);
  flex-shrink: 0;
}
.btn-gplay img { display: block; height: 56px; width: auto; }
.btn-gplay:hover { transform: translateY(-3px); filter: brightness(1.1) drop-shadow(0 8px 20px rgba(0,0,0,0.4)); }
.btn-gplay--sm img { height: 36px; }

/* ─── Hero logo image ────────────────────────── */
.hero-logo-img {
  opacity: 0;
  transform: translateY(30px);
}
.hero-logo-img img {
  height: clamp(100px, 18vw, 200px);
  width: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 0 40px rgba(255,214,0,0.3)) drop-shadow(0 4px 24px rgba(0,0,0,0.5));
}

/* ─── HERO ───────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 50% 45%, rgba(7,7,16,0.55) 0%, transparent 100%),
    radial-gradient(ellipse 80% 60% at 50% 60%, transparent 0%, rgba(7,7,16,0.65) 70%, #070710 100%),
    linear-gradient(to bottom, transparent 55%, #070710 100%);
  z-index: 1;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 24px 80px;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.hero-eyebrow { opacity: 0; }
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.hero-word { display: block; opacity: 0; transform: translateY(40px); }
.hero-word--accent {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-2);
  line-height: 1.6;
  opacity: 0;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 20px 32px;
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(12px);
  opacity: 0;
  flex-wrap: wrap;
  justify-content: center;
}
.hstat { text-align: center; }
.hstat-val {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  display: block;
  letter-spacing: -0.02em;
}
.hstat-label {
  font-size: 0.75rem;
  color: var(--text-3);
  display: block;
  letter-spacing: 0.04em;
}
.hstat-sep {
  width: 1px;
  height: 36px;
  background: var(--border);
}
.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--border-2));
  margin: 0 auto;
  animation: scroll-anim 2s ease-in-out infinite;
}
@keyframes scroll-anim {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ─── FEATURES ───────────────────────────────── */
.features .section-header {
  max-width: 1100px;
}
.features .section-title {
  white-space: nowrap;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feat-card {
  position: relative;
  padding: 36px 32px;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  background: var(--bg-2);
  overflow: hidden;
  transition: transform var(--mid) var(--ease), border-color var(--mid);
  opacity: 0;
  transform: translateY(30px);
}
.feat-card:hover { transform: translateY(-6px); }
.feat-card[data-color="red"]:hover  { border-color: rgba(255, 59, 78, 0.4); }
.feat-card[data-color="blue"]:hover { border-color: rgba(0, 145, 255, 0.4); }
.feat-card[data-color="green"]:hover{ border-color: rgba(0, 212, 106, 0.4); }
.feat-card--featured {
  border-color: rgba(0, 145, 255, 0.3);
  background: linear-gradient(135deg, rgba(0,145,255,0.06) 0%, var(--bg-2) 100%);
}
.feat-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 4px;
  background: var(--blue);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.feat-icon {
  width: 56px; height: 56px;
  border-radius: var(--r-sm);
  background: var(--bg-3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.feat-card h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.feat-card p {
  font-size: 0.9375rem;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 24px;
}
.feat-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--yellow);
  letter-spacing: 0.02em;
}
.feat-glow {
  position: absolute;
  bottom: -60px; right: -60px;
  width: 160px; height: 160px;
  border-radius: 50%;
  opacity: 0;
  transition: opacity var(--mid);
  pointer-events: none;
}
.feat-card[data-color="red"]    .feat-glow { background: var(--red-glow); }
.feat-card[data-color="blue"]   .feat-glow { background: var(--blue-glow); }
.feat-card[data-color="green"]  .feat-glow { background: var(--green-glow); }
.feat-card[data-color="yellow"] .feat-glow { background: var(--yellow-glow); }
.feat-card:hover .feat-glow { opacity: 1; }

/* NFT card glows */
.nft-card[data-color="red"]    .feat-glow { background: var(--red-glow); }
.nft-card[data-color="blue"]   .feat-glow { background: var(--blue-glow); }
.nft-card[data-color="green"]  .feat-glow { background: var(--green-glow); }
.nft-card[data-color="yellow"] .feat-glow { background: var(--yellow-glow); }
.nft-card:hover .feat-glow { opacity: 1; }

/* ─── GAME PREVIEW ───────────────────────────── */
.game-preview {
  position: relative;
  overflow: hidden;
  padding: 0;
  min-height: 85vh;
  display: flex;
  align-items: center;
}
#gameplay-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  filter: brightness(0.25) saturate(0.5);
  transform: scale(1.04);
}
.game-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(to bottom, var(--bg) 0%, transparent 20%, transparent 80%, var(--bg) 100%),
    linear-gradient(to right,  var(--bg) 0%, transparent 14%, transparent 86%, var(--bg) 100%);
  background-color: rgba(7,7,16,0.62);
}
.game-preview-inner {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: var(--section-gap) 24px;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}
.game-text {
  opacity: 0;
  transform: translateY(30px);
  text-align: center;
  max-width: 660px;
}
.game-text--wide {
  max-width: 1120px;
}
.game-text--wide .features-grid {
  margin-top: 28px;
}
.game-text--wide .feat-card {
  text-align: left;
}
.game-text--wide .feat-card h3,
.game-text--wide .feat-card p,
.game-text--wide .feat-card .feat-link {
  text-align: left;
}
.game-text--wide .feat-link a {
  color: inherit;
  text-decoration: none;
}
.game-text .section-tag { text-shadow: 0 0 20px rgba(255,214,0,0.4); }
.game-text .section-title {
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 0 2px 32px rgba(0,0,0,0.95), 0 0 80px rgba(0,0,0,0.6);
}
.game-text .section-desc {
  color: rgba(255,255,255,0.75);
  text-shadow: 0 1px 16px rgba(0,0,0,0.9);
}
.game-text .game-feat-list li { color: rgba(255,255,255,0.85); }
.game-feat-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 28px 0 36px;
  align-items: center;
}
.game-feat-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.85);
  text-shadow: 0 1px 8px rgba(0,0,0,0.8);
}
.list-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.list-dot.red    { background: var(--red);    box-shadow: 0 0 8px var(--red); }
.list-dot.green  { background: var(--green);  box-shadow: 0 0 8px var(--green); }
.list-dot.blue   { background: var(--blue);   box-shadow: 0 0 8px var(--blue); }
.list-dot.yellow { background: var(--yellow); box-shadow: 0 0 8px var(--yellow); }
#board-canvas { display: none; }
.board-label {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  color: var(--text-3);
  letter-spacing: 0.06em;
  pointer-events: none;
}

/* ─── NFT SHOWCASE ───────────────────────────── */
.nft-section { background: var(--bg); }
.nft-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.nft-card {
  position: relative;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  background: var(--bg-2);
  overflow: hidden;
  transition: transform var(--mid) var(--ease), border-color var(--mid);
  opacity: 0;
  transform: translateY(30px);
}
.nft-card:hover { transform: translateY(-6px); }
.nft-card[data-color="red"]:hover    { border-color: rgba(255,59,78,0.4); }
.nft-card[data-color="blue"]:hover   { border-color: rgba(0,145,255,0.4); }
.nft-card[data-color="green"]:hover  { border-color: rgba(0,212,106,0.4); }
.nft-card[data-color="yellow"]:hover { border-color: rgba(255,214,0,0.4); }
.nft-card--hot { border-color: rgba(255,59,78,0.3); }
.nft-badge {
  position: absolute;
  top: 12px; right: 12px;
  padding: 4px 10px;
  border-radius: 6px;
  background: var(--red);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  z-index: 2;
}
.nft-canvas-wrap {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--bg-3) 0%, var(--bg-2) 100%);
}
.token-canvas { width: 100%; height: 100%; }
.nft-info {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 16px 16px 8px;
  gap: 8px;
}
.nft-name {
  font-family: var(--font-head);
  font-size: 0.9375rem;
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}
.nft-sub {
  font-size: 0.75rem;
  color: var(--text-3);
}
.nft-rarity {
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.nft-rarity.rare      { background: rgba(0,145,255,0.15); color: #60b4ff; }
.nft-rarity.epic      { background: rgba(160,80,255,0.15); color: #c878ff; }
.nft-rarity.legendary { background: rgba(255,214,0,0.15); color: var(--yellow); }
.nft-price {
  padding: 0 16px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.price-label { font-size: 0.75rem; color: var(--text-3); }
.price-val {
  font-family: var(--font-head);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--green);
}
.nft-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── PLATFORM SUPPORT ───────────────────────── */
.platforms {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 50%, var(--bg) 100%);
}
.platform-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}
.platform-copy .section-title,
.platform-copy .section-desc { text-align: left; }
.platform-copy { opacity: 0; transform: translateX(50px); }
.platform-visual {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  opacity: 0;
  transform: translateX(-50px);
}
.platform-stack {
  position: relative;
  width: 100%;
  height: 100%;
  transform: translate(-30px, 220px);
  transition: transform 320ms ease, filter 320ms ease;
}
.platform-visual:hover .platform-stack {
  transform: translate(-30px, 212px) scale(1.015);
  filter: drop-shadow(0 26px 50px rgba(0,0,0,0.42));
}
.platform-screen {
  position: absolute;
  width: 188px;
  left: 50%;
  top: 50%;
  transform: translate(-74%, -88%);
  z-index: 22;
  animation: platform-screen-float 5.2s ease-in-out infinite;
}
.platform-front {
  position: absolute;
  width: 515px;
  left: 50%;
  top: 50%;
  transform: translate(-48%, -40%);
  z-index: 18;
  animation: platform-front-float 5.2s ease-in-out infinite;
}
.platform-back {
  position: absolute;
  width: 466px;
  left: 50%;
  top: 50%;
  transform: translate(-14%, -40%);
  z-index: 12;
  animation: platform-back-float 5.2s ease-in-out infinite;
}
@keyframes platform-front-float {
  0%, 100% { transform: translate(-48%, -40%); }
  50% { transform: translate(-48%, -44%); }
}
@keyframes platform-back-float {
  0%, 100% { transform: translate(-14%, -40%); }
  50% { transform: translate(-14%, -43%); }
}
@keyframes platform-screen-float {
  0%, 100% { transform: translate(-74%, -88%); }
  50% { transform: translate(-74%, -92%); }
}

/* ─── SEEKER PHONE ───────────────────────────── */
.seeker-section {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 60%, var(--bg) 100%);
  overflow: hidden;
}
.seeker-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.seeker-text { opacity: 0; transform: translateX(-40px); }
.seeker-badge-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 4px;
}
.seeker-exclusive-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 50px;
  border: 1px solid rgba(153,69,255,0.35);
  background: rgba(153,69,255,0.1);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #c07aff;
}
.seeker-features {
  margin: 28px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.seeker-features li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.9375rem;
  color: var(--text-2);
}
.seeker-feat-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(var(--c, 255,255,255), 0.08);
  border: 1px solid rgba(var(--c, 255,255,255), 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.seeker-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.seeker-powered {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-3);
}

/* Phone image */
.seeker-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
  opacity: 0;
  transform: translateX(40px);
}
.seeker-glow-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(153,69,255,0.14) 0%, transparent 70%);
  pointer-events: none;
}
.seeker-img-wrap {
  position: relative;
  animation: phone-float 5s ease-in-out infinite;
  filter: drop-shadow(0 40px 80px rgba(0,0,0,0.6)) drop-shadow(0 0 60px rgba(153,69,255,0.2));
}
.seeker-img {
  width: 100%;
  max-width: 480px;
  height: auto;
  display: block;
}
@keyframes phone-float {
  0%,100% { transform: translateY(0px); }
  50%      { transform: translateY(-16px); }
}

/* Floating badge chips */
.seeker-badge-float {
  position: absolute;
  padding: 8px 14px;
  border-radius: 50px;
  background: rgba(13,13,31,0.9);
  border: 1px solid var(--border-2);
  backdrop-filter: blur(12px);
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.seeker-bf-1 { top: 80px; right: -20px; animation: badge-float-1 4s ease-in-out infinite; }
.seeker-bf-2 { bottom: 100px; left: -20px; animation: badge-float-2 4s ease-in-out infinite 2s; }
@keyframes badge-float-1 {
  0%,100% { transform: translateY(0px); }
  50%      { transform: translateY(-8px); }
}
@keyframes badge-float-2 {
  0%,100% { transform: translateY(0px); }
  50%      { transform: translateY(8px); }
}

/* ─── TRACTION & VALIDATION ─────────────────── */
.traction-section {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 50%, var(--bg) 100%);
}
.traction-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}
.traction-card {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: rgba(255,255,255,0.02);
  padding: 24px;
}
.game-preview .traction-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
  gap: 16px;
}
.game-preview .traction-card {
  position: relative;
  overflow: hidden;
  background: rgba(12, 16, 24, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  padding: 20px 22px;
  text-align: left;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: transform var(--mid) var(--ease), border-color var(--mid), box-shadow var(--mid);
}
.game-preview .traction-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -55% -20%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(255, 214, 0, 0.2) 0%, rgba(255, 214, 0, 0) 70%);
  pointer-events: none;
}
.game-preview .traction-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 214, 0, 0.45);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 214, 0, 0.12) inset;
}
.traction-card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  margin: 8px 0 10px;
}
.traction-card p {
  color: var(--text-2);
  font-size: 0.94rem;
}
.game-preview .traction-card h3 {
  color: #ffffff;
}
.game-preview .traction-card p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
}
.game-preview .traction-card p:last-child {
  margin-top: auto;
  margin-bottom: 0;
}
.game-preview .traction-card a {
  color: #ffd86b;
  font-weight: 700;
}
.game-preview .traction-card a:hover {
  color: #fff0b0;
}
.traction-medal {
  color: var(--yellow);
  font-weight: 700;
  letter-spacing: 0.03em;
}
.traction-footnote {
  margin-top: 24px;
  text-align: center;
  color: var(--yellow);
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* ─── ROADMAP TIMELINE ──────────────────────── */
.roadmap-section {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 50%, var(--bg) 100%);
  overflow: hidden;
  padding: 80px 0 0;
}

.rm-timeline-track {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Center conduit line ── */
.rm-conduit {
  position: absolute;
  left: 50%;
  top: clamp(180px, 22vw, 240px); bottom: 0;
  transform: translateX(-50%);
  width: 2px;
  background: rgba(255,255,255,0.07);
  z-index: 1;
  pointer-events: none;
}

.rm-comet-fill {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, var(--yellow) 0%, rgba(255,214,0,0.15) 100%);
  border-radius: 2px;
}

.rm-comet-spark {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 14px 3px rgba(255,214,0,0.8), 0 0 32px rgba(255,214,0,0.4);
}

/* ── Header unit ── */
.rm-status-label {
  text-align: center;
  padding: 60px 24px 56px;
  position: relative;
  z-index: 2;
}

/* ── Timeline items (3-col grid) ── */
.rm-timeline-item {
  display: grid;
  grid-template-columns: 1fr 64px 1fr;
  align-items: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

/* Node in center column */
.rm-node-wrapper {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3;
}

/* Phase 01 & 03 (odd children of track) → card on LEFT */
.rm-timeline-track > .rm-timeline-item:nth-child(odd) .rm-glass-card {
  grid-column: 1;
  grid-row: 1;
  justify-self: end;
  padding-right: 20px;
}

/* Phase 02 & 04 (even children of track) → card on RIGHT */
.rm-timeline-track > .rm-timeline-item:nth-child(even) .rm-glass-card {
  grid-column: 3;
  grid-row: 1;
  justify-self: start;
  padding-left: 20px;
}

/* ── Glass sphere ── */
.rm-glass-sphere {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
  position: relative;
  transition: box-shadow 0.4s;
}
.rm-glass-sphere::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  opacity: 0;
  animation: nodePulse 2.4s ease-in-out infinite;
}
.rm-sphere--done {
  background: rgba(0,212,106,0.25);
  border-color: var(--green);
  box-shadow: 0 0 12px rgba(0,212,106,0.6);
}
.rm-sphere--done::after {
  border-color: rgba(0,212,106,0.45);
}
.rm-sphere--active {
  background: rgba(255,214,0,0.25);
  border-color: var(--yellow);
  box-shadow: 0 0 12px rgba(255,214,0,0.7);
}
.rm-sphere--active::after {
  border-color: rgba(255,214,0,0.5);
}
.rm-sphere--upcoming {
  background: rgba(0,145,255,0.15);
  border-color: rgba(0,145,255,0.5);
}
.rm-sphere--upcoming::after {
  border-color: rgba(0,145,255,0.45);
}
.rm-sphere--future {
  background: rgba(153,69,255,0.1);
  border-color: rgba(153,69,255,0.4);
}
.rm-sphere--future::after {
  border-color: rgba(153,69,255,0.45);
}

@keyframes nodePulse {
  0%   { transform: scale(1); opacity: 0.8; }
  70%  { transform: scale(2.8); opacity: 0; }
  100% { transform: scale(1); opacity: 0; }
}

/* ── Glass card ── */
.rm-glass-card {
  width: 100%;
  max-width: 420px;
}

/* ── Bezel shroud ── */
.rm-bezel-shroud {
  border-radius: 16px;
  padding: 6px;
  background: linear-gradient(
    145deg,
    rgba(255,255,255,0.11) 0%,
    rgba(255,255,255,0.04) 40%,
    rgba(0,0,0,0.28) 100%
  );
  box-shadow:
    0 20px 60px rgba(0,0,0,0.55),
    0 1px 0 rgba(255,255,255,0.06) inset;
  transition: box-shadow 0.5s;
}
.rm-timeline-item.active .rm-bezel-shroud,
.rm-bezel-shroud {
  box-shadow:
    0 28px 80px rgba(0,0,0,0.65),
    0 0 60px rgba(255,214,0,0.06),
    0 1px 0 rgba(255,255,255,0.08) inset;
}

/* ── Inner content ── */
.rm-content {
  background: #0a0a12;
  border-radius: 11px;
  padding: 28px 28px 24px;
  border: 1px solid rgba(255,255,255,0.06);
}

/* ── Card header ── */
.rm-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.rm-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.rm-badge--done     { background: rgba(0,212,106,0.15); color: var(--green); border: 1px solid rgba(0,212,106,0.35); }
.rm-badge--active   { background: rgba(255,214,0,0.15); color: var(--yellow); border: 1px solid rgba(255,214,0,0.4); animation: badge-blink 2s ease-in-out infinite; }
.rm-badge--upcoming { background: rgba(0,145,255,0.1); color: #60b4ff; border: 1px solid rgba(0,145,255,0.3); }
.rm-badge--future   { background: rgba(153,69,255,0.1); color: #c07aff; border: 1px solid rgba(153,69,255,0.3); }
@keyframes badge-blink { 0%,100% { opacity: 1; } 50% { opacity: 0.65; } }

.rm-period {
  font-size: 0.72rem;
  color: var(--text-3);
  letter-spacing: 0.04em;
}

.rm-content h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  color: var(--text);
}

/* ── List ── */
.rm-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.rm-list li {
  font-size: 0.875rem;
  color: var(--text-3);
  display: flex;
  align-items: center;
  gap: 10px;
}
.rm-list li::before {
  content: '○';
  font-size: 0.55rem;
  color: rgba(255,255,255,0.2);
  flex-shrink: 0;
}
.rm-list--done { color: var(--text-2) !important; }
.rm-list--done::before { content: '✓' !important; color: var(--green) !important; font-size: 0.75rem !important; font-weight: 700; }
.rm-list--progress { color: var(--text) !important; }
.rm-list--progress::before { content: '◉' !important; color: var(--yellow) !important; font-size: 0.55rem !important; }

/* ── Responsive ── */
@media (max-width: 860px) {
  .rm-timeline-item { grid-template-columns: 1fr 44px 1fr; }
  .rm-glass-card { max-width: 300px; }
}
@media (max-width: 600px) {
  .rm-conduit { left: 20px; transform: none; }
  .rm-timeline-item {
    display: block;
    padding-left: 52px;
    margin-bottom: 48px;
    position: relative;
  }
  .rm-node-wrapper {
    position: absolute;
    left: 3px; top: 16px;
    display: flex;
  }
  .rm-timeline-track > .rm-timeline-item:nth-child(odd) .rm-glass-card,
  .rm-timeline-track > .rm-timeline-item:nth-child(even) .rm-glass-card {
    max-width: 100%;
    padding: 0;
    grid-column: unset;
    justify-self: unset;
  }
}

/* ─── COMMUNITY ──────────────────────────────── */
.community-section {
  background: var(--bg);
  text-align: center;
}
.community-inner { max-width: 800px; margin: 0 auto; }
.comm-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.comm-card {
  position: relative;
  padding: 36px 24px;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  background: var(--bg-2);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: transform var(--mid) var(--ease), border-color var(--mid);
  opacity: 0;
  transform: translateY(20px);
}
.comm-card:hover { transform: translateY(-6px); }
.comm-discord:hover  { border-color: rgba(88,101,242,0.5); }
.comm-twitter:hover  { border-color: rgba(29,155,240,0.5); }
.comm-telegram:hover { border-color: rgba(0,136,204,0.5); }
.comm-icon {
  width: 56px; height: 56px;
  border-radius: var(--r-md);
  background: var(--bg-3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.comm-discord  .comm-icon { color: #7289DA; }
.comm-twitter  .comm-icon { color: #1DA1F2; }
.comm-telegram .comm-icon { color: #229ED9; }
.comm-card h3 {
  font-family: var(--font-head);
  font-size: 1.0625rem;
  font-weight: 700;
}
.comm-card p  { font-size: 0.875rem; color: var(--text-2); }
.comm-arrow {
  position: absolute;
  top: 16px; right: 20px;
  font-size: 1rem;
  color: var(--text-3);
  transition: color var(--mid), transform var(--mid);
}
.comm-card:hover .comm-arrow { color: var(--yellow); transform: translate(3px, -3px); }
.community-cta { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.cta-note { font-size: 0.8125rem; color: var(--text-3); }

/* ─── FAQ ────────────────────────────────────── */
.faq-section { background: var(--bg-2); }
.faq-container { max-width: 760px; }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
  opacity: 0;
  transform: translateY(10px);
}
.faq-item summary {
  padding: 20px 0;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  transition: color var(--fast);
}
.faq-item summary:hover { color: var(--yellow); }
.faq-item summary::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--text-3);
  transition: transform var(--mid), color var(--mid);
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item[open] summary::after { transform: rotate(45deg); color: var(--yellow); }
.faq-item p {
  padding: 0 0 20px;
  font-size: 0.9375rem;
  color: var(--text-2);
  line-height: 1.7;
}

/* ─── FOOTER ─────────────────────────────────── */
.footer {
  background: linear-gradient(180deg, #0b0b1c 0%, var(--bg) 100%);
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255,214,0,0.6) 25%,
    rgba(255,59,78,0.5) 55%,
    rgba(0,145,255,0.4) 80%,
    transparent 100%);
}
.footer::after {
  content: '';
  position: absolute;
  top: -160px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255,214,0,0.035) 0%, transparent 70%);
  pointer-events: none;
}

/* ── CTA strip ── */
.footer-cta-strip {
  border-bottom: 1px solid var(--border);
  padding: 52px 48px;
  position: relative;
  z-index: 1;
}
.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-cta-title {
  font-family: var(--font-head);
  font-size: clamp(1.35rem, 2.8vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  background: linear-gradient(135deg, #fff 0%, var(--text-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-cta-sub {
  font-size: 0.9rem;
  color: var(--text-3);
}

/* ── Main grid ── */
.footer-main {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr;
  gap: 48px 40px;
  padding: 60px 48px 52px;
  position: relative;
  z-index: 1;
}

.footer-brand-desc {
  font-size: 0.875rem;
  color: var(--text-3);
  line-height: 1.75;
  margin: 16px 0 20px;
}

.footer-chain-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border-radius: 50px;
  border: 1px solid rgba(0,212,106,0.28);
  background: rgba(0,212,106,0.07);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}
.footer-chain-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
  animation: chainBlink 2.2s ease-in-out infinite;
}
@keyframes chainBlink { 0%,100%{opacity:1} 50%{opacity:0.25} }

.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-2);
  transition: color var(--fast), border-color var(--fast), background var(--fast), transform var(--fast);
}
.footer-social a:hover {
  color: var(--yellow);
  border-color: rgba(255,214,0,0.4);
  background: rgba(255,214,0,0.08);
  transform: translateY(-2px);
}

.footer-col-head {
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.footer-col a {
  font-size: 0.875rem;
  color: var(--text-3);
  transition: color var(--fast), padding-left var(--fast);
  display: inline-block;
}
.footer-col a:hover { color: var(--text); padding-left: 6px; }

/* ── Stats bar ── */
.footer-stats-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,0.015);
}
.footer-stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.footer-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 8px 40px;
}
.footer-stat-num {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}
.footer-stat-lbl {
  font-size: 0.72rem;
  color: var(--text-3);
  letter-spacing: 0.04em;
}
.footer-stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── Bottom bar ── */
.footer-bottom {
  padding: 20px 48px;
  position: relative;
  z-index: 1;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-3); }
.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-bottom-links a { font-size: 0.8rem; color: var(--text-3); transition: color var(--fast); }
.footer-bottom-links a:hover { color: var(--text-2); }
.footer-bottom-links span { color: var(--border); font-size: 0.8rem; }

/* ─── Responsive ─────────────────────────────── */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .nft-grid { grid-template-columns: repeat(2, 1fr); }
  .traction-grid { grid-template-columns: 1fr; }
  .game-preview .traction-grid { grid-template-columns: 1fr; }
  .game-preview .traction-card { aspect-ratio: auto; }
  .seeker-inner { gap: 48px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-stat { padding: 8px 24px; }
}

@media (max-width: 768px) {
  :root { --section-gap: 80px; }
  .nav-links, .nav-actions { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile.open { display: block; }
  .platform-showcase { grid-template-columns: 1fr; gap: 36px; }
  .platform-visual { min-height: 420px; }
  .platform-stack { transform: translate(-20px, 150px); }
  .platform-visual:hover .platform-stack { transform: translate(-20px, 144px) scale(1.012); }
  .platform-screen { width: 122px; transform: translate(-74%, -89%); }
  .platform-front { width: 352px; transform: translate(-48%, -41%); }
  .platform-back { width: 315px; transform: translate(-14%, -41%); }
  .features .section-title { white-space: normal; }
  .hero-title { font-size: clamp(3rem, 16vw, 5rem); }
  .features-grid { grid-template-columns: 1fr; }
  .game-preview-inner { grid-template-columns: 1fr; gap: 48px; }
  .game-canvas-wrap { max-width: 100%; }
  .nft-grid { grid-template-columns: repeat(2, 1fr); }
  .comm-cards { grid-template-columns: 1fr; }
  .seeker-inner { grid-template-columns: 1fr; }
  .seeker-visual { order: -1; }
  .footer-main { grid-template-columns: 1fr; gap: 36px; }
  .footer-cta-inner { flex-direction: column; align-items: flex-start; gap: 24px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .footer-stat-divider { display: none; }
  .footer-stats-inner { gap: 8px; }
  .footer-stat { padding: 8px 20px; }
  .hero-stats { gap: 20px; padding: 16px 20px; }
  .hstat-sep { display: none; }
}

@media (max-width: 1280px) {
  .platform-showcase { grid-template-columns: 1fr; gap: 36px; }
  .platform-visual { min-height: 460px; }
  .platform-stack { transform: translate(-24px, 180px); }
  .platform-visual:hover .platform-stack { transform: translate(-24px, 174px) scale(1.012); }
  .platform-screen { width: 138px; transform: translate(-74%, -89%); }
  .platform-front { width: 390px; transform: translate(-48%, -41%); }
  .platform-back { width: 350px; transform: translate(-14%, -41%); }
}

@media (max-width: 480px) {
  .nft-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; width: 100%; }
  .hero-cta .btn { width: 100%; }
  .seeker-phone { width: 210px; height: 430px; }
}

