:root {
  --bg-deep: #0d1a2e;
  --bg-card: #14253d;
  --bg-elevated: #1a2f4a;
  --gold: #d4af37;
  --gold-light: #f0d875;
  --gold-dim: #8a7020;
  --cyan: #4ecdc4;
  --text: #eef3fa;
  --text-muted: #a8b8d0;
  --border: rgba(212, 175, 55, 0.22);
  --glow: rgba(212, 175, 55, 0.35);
  --font: "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-display: Georgia, "Times New Roman", serif;
}

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

html {
  scroll-behavior: smooth;
}

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

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(212, 175, 55, 0.16), transparent),
    radial-gradient(ellipse 60% 40% at 100% 50%, rgba(78, 205, 196, 0.1), transparent),
    linear-gradient(180deg, #12233a 0%, #0d1a2e 55%, #0f2036 100%);
  pointer-events: none;
  z-index: -2;
}

.circuit-bg {
  position: fixed;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 30h20M40 30h20M30 0v20M30 40v20' stroke='%23d4af37' fill='none'/%3E%3Ccircle cx='30' cy='30' r='2' fill='%23d4af37'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: -1;
}

a {
  color: var(--gold-light);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: #fff;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(18, 35, 58, 0.88);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text);
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(212, 175, 55, 0.18);
  opacity: 0.9;
  filter: saturate(0.9) brightness(0.92) contrast(0.95);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  font-size: 0.9rem;
}

.nav-links a {
  color: var(--text-muted);
  position: relative;
  padding-bottom: 0.2rem;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a.active {
  color: var(--gold-light);
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.15rem;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dim) 100%);
  color: #0a0f18;
  box-shadow: 0 4px 24px var(--glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--glow);
  color: #0a0f18;
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
}

.btn-outline:hover {
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold-light);
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  padding: 4rem 0 5rem;
  min-height: calc(100vh - 70px);
}

.hero-badge {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  line-height: 1.1;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #fff 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero .ticker {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
}

.hero .tagline {
  font-size: 0.85rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.hero p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 480px;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.page {
  padding-bottom: 2rem;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 380px;
  perspective: 1200px;
}

/* ─── 3D Background Scene ─── */
.scene-3d {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  perspective: 800px;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  animation: orbFloat 12s ease-in-out infinite;
}

.orb-1 {
  width: 280px;
  height: 280px;
  background: rgba(212, 175, 55, 0.15);
  top: 10%;
  right: 5%;
  animation-delay: 0s;
}

.orb-2 {
  width: 200px;
  height: 200px;
  background: rgba(78, 205, 196, 0.1);
  bottom: 20%;
  left: 8%;
  animation-delay: -4s;
}

.orb-3 {
  width: 150px;
  height: 150px;
  background: rgba(212, 175, 55, 0.08);
  top: 50%;
  left: 50%;
  animation-delay: -8s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  33% { transform: translate3d(30px, -40px, 50px) scale(1.1); }
  66% { transform: translate3d(-20px, 20px, -30px) scale(0.95); }
}

.ring {
  position: absolute;
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform-style: preserve-3d;
}

.ring-1 {
  width: 500px;
  height: 500px;
  margin: -250px 0 0 -250px;
  animation: ringSpin 25s linear infinite;
  transform: rotateX(72deg) rotateZ(0deg);
}

.ring-2 {
  width: 700px;
  height: 700px;
  margin: -350px 0 0 -350px;
  animation: ringSpin 35s linear infinite reverse;
  transform: rotateX(65deg) rotateZ(45deg);
  opacity: 0.5;
}

@keyframes ringSpin {
  from { transform: rotateX(72deg) rotateZ(0deg); }
  to { transform: rotateX(72deg) rotateZ(360deg); }
}

/* ─── 3D Coin Hero ─── */
.coin-scene {
  position: relative;
  width: min(420px, 90vw);
  height: min(420px, 90vw);
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
}

.coin-3d {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out;
  animation: coinIdle 8s ease-in-out infinite;
}

.coin-3d.spin-360 {
  animation: coinSpin360 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes coinSpin360 {
  from { transform: rotateX(var(--base-x, 0deg)) rotateY(var(--base-y, 0deg)); }
  to { transform: rotateX(var(--base-x, 0deg)) rotateY(calc(var(--base-y, 0deg) + 360deg)); }
}

@keyframes coinIdle {
  0%, 100% { transform: rotateY(-8deg) rotateX(5deg) translateY(0); }
  50% { transform: rotateY(8deg) rotateX(-3deg) translateY(-14px); }
}

.coin-face {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  backface-visibility: hidden;
}

.coin-front img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 22px;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.55))
          drop-shadow(0 0 24px rgba(212, 175, 55, 0.16))
          saturate(0.9) brightness(0.9) contrast(0.95);
}

.coin-edge {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    var(--gold-dim) 0%,
    var(--gold-light) 25%,
    var(--gold) 50%,
    var(--gold-light) 75%,
    var(--gold-dim) 100%
  );
  transform: translateZ(-12px) rotateY(180deg);
  opacity: 0.35;
  border-radius: 50%;
}

.coin-shadow {
  position: absolute;
  bottom: -8%;
  left: 50%;
  width: 70%;
  height: 12%;
  margin-left: -35%;
  background: radial-gradient(ellipse, rgba(212, 175, 55, 0.25) 0%, transparent 70%);
  transform: rotateX(90deg) translateZ(-40px);
  filter: blur(8px);
  animation: shadowPulse 8s ease-in-out infinite;
}

@keyframes shadowPulse {
  0%, 100% { opacity: 0.6; transform: rotateX(90deg) translateZ(-40px) scale(1); }
  50% { opacity: 0.9; transform: rotateX(90deg) translateZ(-40px) scale(1.15); }
}

.coin-orbit {
  position: absolute;
  width: 115%;
  height: 115%;
  border: 1px dashed rgba(212, 175, 55, 0.2);
  border-radius: 50%;
  transform-style: preserve-3d;
  animation: orbitSpin 14s linear infinite;
  transform: rotateX(68deg);
}

@keyframes orbitSpin {
  from { transform: rotateX(68deg) rotateZ(0deg); }
  to { transform: rotateX(68deg) rotateZ(360deg); }
}

.orbit-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  top: 0;
  left: 50%;
  margin-left: -5px;
  box-shadow: 0 0 12px var(--gold), 0 0 24px var(--glow);
}

.orbit-dot.delay { top: 33%; left: 100%; margin: -5px 0 0 -5px; }
.orbit-dot.delay-2 { top: 66%; left: 0; margin: -5px 0 0 -5px; }

/* ─── 3D Card Tilt ─── */
.tilt-card {
  transform-style: preserve-3d;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  will-change: transform;
}

.tilt-card:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(212, 175, 55, 0.1);
}

.flip-card {
  transform-style: preserve-3d;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.4s ease;
}

.flip-card:hover {
  transform: translateY(-8px) rotateX(6deg) rotateY(-4deg) scale(1.02);
  box-shadow:
    0 25px 50px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(212, 175, 55, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* ─── Scroll Reveal 3D ─── */
.reveal-3d {
  perspective: 1000px;
}

.reveal-3d .tilt-card,
.reveal-3d .flip-card,
.reveal-3d .stat-card,
.reveal-3d .step,
.reveal-3d.contract-box {
  opacity: 0;
  transform: translateY(40px) rotateX(12deg);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal-3d.visible .tilt-card,
.reveal-3d.visible .flip-card,
.reveal-3d.visible .stat-card,
.reveal-3d.visible .step,
.reveal-3d.visible.contract-box {
  opacity: 1;
  transform: translateY(0) rotateX(0);
}

.reveal-3d.visible .stat-card:nth-child(1) { transition-delay: 0.05s; }
.reveal-3d.visible .stat-card:nth-child(2) { transition-delay: 0.1s; }
.reveal-3d.visible .stat-card:nth-child(3) { transition-delay: 0.15s; }
.reveal-3d.visible .stat-card:nth-child(4) { transition-delay: 0.2s; }

.reveal-3d.visible .flip-card:nth-child(1) { transition-delay: 0.05s; }
.reveal-3d.visible .flip-card:nth-child(2) { transition-delay: 0.15s; }
.reveal-3d.visible .flip-card:nth-child(3) { transition-delay: 0.25s; }

.reveal-3d.visible .feature:nth-child(odd) { transition-delay: 0.05s; }
.reveal-3d.visible .feature:nth-child(even) { transition-delay: 0.12s; }

.reveal-3d.visible .step:nth-child(1) { transition-delay: 0.05s; }
.reveal-3d.visible .step:nth-child(2) { transition-delay: 0.12s; }
.reveal-3d.visible .step:nth-child(3) { transition-delay: 0.19s; }
.reveal-3d.visible .step:nth-child(4) { transition-delay: 0.26s; }

/* Hero text entrance */
.hero-content > * {
  opacity: 0;
  transform: translateX(-30px);
  animation: heroSlideIn 0.8s ease forwards;
}

.hero-content .hero-badge { animation-delay: 0.1s; }
.hero-content h1 { animation-delay: 0.2s; }
.hero-content .ticker { animation-delay: 0.3s; }
.hero-content .tagline { animation-delay: 0.4s; }
.hero-content p { animation-delay: 0.5s; }
.hero-content .hero-actions { animation-delay: 0.65s; }

@keyframes heroSlideIn {
  to { opacity: 1; transform: translateX(0); }
}

.coin-scene {
  opacity: 0;
  transform: scale(0.85) rotateY(-20deg);
  animation: coinEnter 1.2s cubic-bezier(0.23, 1, 0.32, 1) 0.3s forwards;
}

@keyframes coinEnter {
  to { opacity: 1; transform: scale(1) rotateY(0); }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .coin-3d,
  .coin-orbit,
  .ring,
  .orb,
  .coin-scene,
  .hero-content > * {
    animation: none !important;
  }

  .reveal-3d .tilt-card,
  .reveal-3d .flip-card,
  .reveal-3d .stat-card,
  .reveal-3d .step,
  .reveal-3d.contract-box {
    opacity: 1;
    transform: none;
  }
}

/* Stats */
.proof-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}

.proof-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.24);
  background: rgba(20, 37, 61, 0.75);
  color: var(--gold-light);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 5rem;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.25rem;
  text-align: center;
}

.stat-card .value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.stat-card .label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Sections */
section {
  padding: 4rem 0;
}

.section-shell {
  position: relative;
  background: linear-gradient(180deg, rgba(20, 37, 61, 0.7), rgba(20, 37, 61, 0.4));
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: 24px;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  margin-bottom: 1.2rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.section-shell::before {
  content: "";
  position: absolute;
  top: 0;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}

.section-title p {
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* Tokenomics */
.tokenomics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.token-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.token-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold), var(--gold-dim));
}

.token-card .amount {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.token-card .pct {
  font-size: 0.85rem;
  color: var(--cyan);
  margin-bottom: 0.75rem;
}

.token-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.token-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.feature {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
}

.feature-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.feature h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
  color: var(--gold-light);
}

.feature p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* Contract */
.contract-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  max-width: 720px;
  margin: 0 auto;
}

.contract-box .contract-row {
  background: rgba(13, 26, 46, 0.5);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 12px;
  padding: 0.5rem;
}

.contract-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.contract-row:last-child {
  margin-bottom: 0;
}

.contract-row label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  min-width: 80px;
}

.contract-row code {
  flex: 1;
  font-family: "Cascadia Code", "Consolas", monospace;
  font-size: 0.8rem;
  background: var(--bg-deep);
  padding: 0.75rem 1rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  word-break: break-all;
  color: var(--gold-light);
}

.copy-btn {
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  border-radius: 8px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--gold-dim);
  color: var(--gold);
  cursor: pointer;
  white-space: nowrap;
}

.copy-btn:hover {
  background: rgba(212, 175, 55, 0.25);
}

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

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.8rem;
  background: rgba(78, 205, 196, 0.12);
  border: 1px solid rgba(78, 205, 196, 0.3);
  border-radius: 999px;
  color: var(--cyan);
  font-size: 0.8rem;
  font-weight: 600;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  counter-reset: step;
}

.step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem 1rem;
  text-align: center;
  position: relative;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  display: block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  color: #0a0f18;
  font-weight: 700;
}

.step h3 {
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
}

.step p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Video */
.video-wrap {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.video-wrap .promo-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #000;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  object-fit: cover;
  display: block;
}

.video-hint {
  margin-top: 0.9rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.video-hint code {
  color: var(--gold-light);
  font-size: 0.78rem;
}

/* Coming Soon */
.coming-soon-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.coming-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
}

.coming-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, var(--gold), transparent);
}

.coming-badge {
  display: inline-block;
  margin-bottom: 0.85rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.14);
  border: 1px solid rgba(212, 175, 55, 0.28);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.coming-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.65rem;
  color: var(--gold-light);
}

.coming-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 1.25rem;
}

.coming-link {
  width: 100%;
}

.coming-note {
  margin-top: 1.5rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.88rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

/* Social */
.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.social-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.25rem;
  color: var(--text);
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
}

.social-card:hover {
  border-color: rgba(212, 175, 55, 0.45);
  background: var(--bg-elevated);
  color: #fff;
}

.social-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.4rem;
  color: var(--gold);
  background: rgba(212, 175, 55, 0.12);
}

.social-card strong {
  font-size: 1rem;
  color: var(--gold-light);
}

.social-card span:last-child {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Footer */
footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
  margin-top: 3rem;
  text-align: center;
}

footer .brand-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

footer .brand-footer img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.14);
  opacity: 0.9;
  filter: saturate(0.88) brightness(0.9) contrast(0.95);
}

footer p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.disclaimer {
  margin-top: 2rem;
  font-size: 0.75rem;
  color: #5a6a85;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* Mobile */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 2rem;
  }

  .hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
    min-height: 300px;
  }

  .coin-scene {
    width: min(280px, 80vw);
    height: min(280px, 80vw);
  }

  .ring-1, .ring-2 {
    display: none;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-shell {
    padding-left: 1rem;
    padding-right: 1rem;
  }

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

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

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .coming-soon-grid,
  .social-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav.open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-card);
    padding: 1rem;
    border-bottom: 1px solid var(--border);
  }
}

@media (max-width: 480px) {
  .proof-pill {
    width: 100%;
  }

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