:root {
  --bg: #07090F;
  --bg1: #0C1020;
  --bg2: #111628;
  --bg3: #171D30;
  --card: rgba(255, 255, 255, 0.035);
  --cardh: rgba(255, 255, 255, 0.065);
  --gold: #E4B84A;
  --gold2: #F5CC6A;
  --gdim: rgba(228, 184, 74, 0.12);
  --gglow: 0 0 40px rgba(228, 184, 74, 0.18);
  --red: #C13030;
  --red2: #DC4040;
  --t: #EDE8DC;
  --t2: #9A9182;
  --t3: #5A5348;
  --b: rgba(255, 255, 255, 0.07);
  --bgold: rgba(228, 184, 74, 0.22);
  --r: 14px;
  --r2: 8px;
  --mono: 'Space Mono', monospace;
  --sans: 'DM Sans', sans-serif;
  --disp: 'Syne', sans-serif;
  --kh: Khula, sans-serif;
  --trans: 0.25s ease;
}

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

html {
  scroll-behavior: smooth
}

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

a {
  color: inherit;
  text-decoration: none
}

img {
  max-width: 100%;
  height: auto
}

button {
  cursor: pointer;
  font-family: var(--sans)
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
  width: 6px
}

::-webkit-scrollbar-track {
  background: var(--bg1)
}

::-webkit-scrollbar-thumb {
  background: var(--bg3);
  border-radius: 3px
}

/* ── NOISE OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='250' height='250'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='250' height='250' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.5;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(7, 9, 15, 0.92);
  border-bottom: 1px solid var(--b);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--kh);
  font-size: 20px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 1px;
  cursor: pointer
}

.nav-logo-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bg2), var(--bg3)); 
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px
}

.nav-center {
  display: flex;
  align-items: center;
  gap: 0.25rem
}

.nav-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--t2);
  padding: 6px 14px;
  border-radius: 20px;
  transition: var(--trans);
  letter-spacing: 0.3px;
  cursor: pointer;
}

.nav-link:hover,
.nav-link.active {
  color: var(--t);
  background: var(--card)
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem
}

.nav-icon {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--t2);
  padding: 6px 12px;
  border-radius: 20px;
  transition: var(--trans);
  background: var(--card);
  cursor: pointer;
}

.nav-icon:hover {
  color: var(--gold);
  background: var(--gdim)
}

.nav-icon i {
  font-size: 16px
}

.btn-gold {
  background: var(--gold);
  color: #07090F;
  font-family: var(--disp);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 9px 20px;
  border: none;
  border-radius: 8px;
  transition: var(--trans)
}

.btn-gold:hover {
  background: var(--gold2);
  transform: translateY(-1px);
  box-shadow: var(--gglow)
}

.mob-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--t2);
  font-size: 24px;
  padding: 4px
}

@media(max-width:900px) {
  .nav-center {
    display: none
  }

  .nav-icon {
    display: none
  }

  .mob-menu-btn {
    display: flex
  }

  nav {
    padding: 0 1.25rem
  }

  .nav-mob-open .nav-center {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
    position: absolute;
    top: 64px;
    right: 0;
    min-width: 263px;
    min-height: 100vh;
    background: rgba(7, 9, 15, 0.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--b);
    padding: 0.75rem 1.25rem 1.25rem;
  }
}

/* ── TICKER ── */
.ticker {
  background: linear-gradient(90deg, var(--red), #9a2020);
  height: 32px;
  overflow: hidden;
  display: flex;
  align-items: center;
  position: absolute;
  width: 40%;
  min-width: 250px;
  bottom: 0;
  right: 0;
  z-index: 1
}

.ticker::after {
  content: "";
  position: absolute;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, var(--bg), transparent);
}

.ticker-inner {
  display: flex;
  gap: 2.5rem;
  animation: tick 35s linear infinite;
  white-space: nowrap
}

.ticker-inner span {
  font-family: var(--mono);
  font-size: 10px;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 2px
}

@keyframes tick {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

/* ── PAGES ── */
.page {
  display: none;
  position: relative;
  z-index: 1;
  min-height: 60vh
}

.page.active {
  display: block
}

.page-enter {
  animation: pageIn 0.35s ease both
}

@keyframes pageIn {
  from {
    opacity: 0;
    transform: translateY(12px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

/* ── LAYOUT ── */
.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 2rem
}

.section {
  padding: 5rem 0
}

.section-sm {
  padding: 3.5rem 0
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gdim);
  border: 1px solid var(--bgold);
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 1.25rem
}

.section-title {
  font-family: var(--kh);
  font-size: clamp(25px, 4vw, 40px);
  font-weight: 800;
  color: var(--t);
  line-height: 1.1;
  margin-bottom: 1rem
}

.section-body {
  font-size: 15px;
  color: var(--t2);
  line-height: 1.8;
  max-width: 580px
}

.label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--t3);
  margin-bottom: 0.5rem
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--r2);
  border: none;
  transition: var(--trans);
  cursor: pointer
}

.btn-primary {
  background: var(--gold);
  color: #07090F
}

.btn-primary:hover {
  background: var(--gold2);
  transform: translateY(-2px);
  box-shadow: var(--gglow)
}

.btn-ghost {
  background: var(--card);
  color: var(--t);
  border: 1px solid var(--b)
}

.btn-ghost:hover {
  background: var(--cardh);
  border-color: rgba(255, 255, 255, 0.15)
}

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

.btn-outline:hover {
  background: var(--gdim)
}

.btn-sm {
  font-size: 13px;
  padding: 9px 18px
}

.btn-xs {
  font-size: 12px;
  padding: 7px 14px
}

/* ── CARDS ── */
.card {
  background: var(--card);
  border: 1px solid var(--b);
  border-radius: var(--r);
  padding: 1.75rem;
  transition: var(--trans)
}

.card:hover {
  background: var(--cardh);
  border-color: rgba(255, 255, 255, 0.12)
}

.card-gold {
  background: var(--gdim);
  border: 1px solid var(--bgold);
  border-radius: var(--r);
  padding: 1.75rem
}

.card-highlight {
  background: linear-gradient(135deg, rgba(228, 184, 74, 0.06), rgba(228, 184, 74, 0.02));
  border: 1px solid var(--bgold);
  border-radius: var(--r);
  padding: 2rem
}

/* ── HERO ── */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--bg);
  min-height: calc(100vh - 96px);
  display: flex;
  align-items: center
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(228, 184, 74, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(228, 184, 74, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at 60% 40%, black 30%, transparent 75%)
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(228, 184, 74, 0.08) 0%, transparent 70%);
  top: 50%;
  right: 0%;
  transform: translate(20%, -50%);
  pointer-events: none
}

.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.5rem
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-dot 2s ease-in-out infinite
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: 0.5;
    transform: scale(0.7)
  }
}

.hero-est {
  font-size: 12px;
  font-weight: 600;
  color: var(--t2);
  letter-spacing: 2px;
  text-transform: uppercase
}

.hero-h1 {
  font-family: var(--kh);
  font-size: clamp(37px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.0;
  color: var(--t);
  margin-bottom: 0.25rem
}

.hero-h1 span {
  color: var(--gold)
}

.hero-sub {
  font-size: 16px;
  color: var(--t2);
  line-height: 1.75;
  max-width: 480px;
  margin: 1.25rem 0 2.25rem
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem
}

.hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid var(--b)
}

.hstat-num {
  font-family: var(--disp);
  font-size: 24px;
  font-weight: 700;
  color: var(--gold)
}

.hstat-label {
  font-size: 12px;
  color: var(--t3);
  letter-spacing: 0.5px;
  margin-top: 1px
}

/* Hero coin visual */
.hero-visual {
  display: flex;
  top: -10%;
  justify-content: center;
  align-items: center;
  position: relative
}

.coin-outer {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 1px solid var(--bgold);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: coin-rotate-border 20s linear infinite
}

@keyframes coin-rotate-border {
  from {
    box-shadow: 0 0 40px rgba(228, 184, 74, 0.1)
  }

  to {
    box-shadow: 0 0 60px rgba(228, 184, 74, 0.2)
  }
}

.coin-outer::before {
  content: '';
  position: absolute;
  background: url(/new/app/images/us-gn.svg) no-repeat center 30%;
  background-size: 100%;
  width: 150%;
  height: 160%;
  opacity: 0.02;
}

.coin-mid {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: float 5s ease-in-out infinite
}

.coin-mid::before {
  content: '';
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 1px solid rgba(228, 184, 74, 0.12)
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-16px)
  }
}

.coin-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(1.1)
}


.hero-orbit {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: orbit 12s linear infinite
}

.hero-orb-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  top: -4px;
  left: 50%;
  margin-left: -4px;
  opacity: 0.6
}

/* ── FEATURE GRID ── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--b);
  border-radius: var(--r);
  padding: 1.75rem;
  transition: var(--trans);
  position: relative;
  overflow: hidden
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gdim), transparent);
  opacity: 0;
  transition: var(--trans)
}

.feature-card:hover {
  border-color: var(--bgold);
  transform: translateY(-3px)
}

.feature-card:hover::before {
  opacity: 1
}

.fc-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--gdim);
  border: 1px solid var(--bgold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1
}

.fc-icon i {
  font-size: 22px;
  color: var(--gold)
}

.fc-title {
  font-family: var(--disp);
  font-size: 18px;
  font-weight: 700;
  color: var(--t);
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1
}

.fc-body {
  font-size: 14px;
  color: var(--t2);
  line-height: 1.75;
  position: relative;
  z-index: 1
}

/* ── TOKENOMICS ── */
.toke-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 2rem
}

.toke-donut-wrap {
  position: relative;
  width: 200px;
  height: 200px;
  flex-shrink: 0
}

.toke-center-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column
}

.toke-cnum {
  font-family: var(--disp);
  font-size: 20px;
  font-weight: 700;
  color: var(--gold)
}

.toke-clabel {
  font-size: 10px;
  color: var(--t3);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 2px
}

.toke-legend {
  display: flex;
  flex-direction: column;
  gap: 1rem
}

.toke-item {
  display: flex;
  align-items: center;
  gap: 1rem
}

.toke-bar-wrap {
  flex: 1;
  height: 6px;
  background: var(--b);
  border-radius: 3px;
  overflow: hidden
}

.toke-bar {
  height: 100%;
  border-radius: 3px;
  transition: width 1s ease
}

.toke-pct {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--gold);
  min-width: 38px;
  text-align: right
}

.toke-name {
  font-size: 13px;
  color: var(--t2);
  min-width: 130px
}

.toke-dot {
  width: 10px;
  height: 10px;
  border-radius: 2px;
  flex-shrink: 0
}

/* ── EXCHANGES ── */
.exchange-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem
}

.exch-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--card);
  border: 1px solid var(--b);
  border-radius: 10px;
  padding: 10px 16px;
  transition: var(--trans);
  text-decoration: none
}

.exch-card:hover {
  background: var(--cardh);
  border-color: var(--bgold);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3)
}

.exch-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--gdim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--gold);
  font-weight: 700;
  font-family: var(--mono)
}

.exch-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--t)
}

.exch-pair {
  font-size: 11px;
  color: var(--t3);
  font-family: var(--mono)
}

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, rgba(228, 184, 74, 0.08), rgba(193, 48, 48, 0.06));
  border: 1px solid var(--bgold);
  border-radius: var(--r);
  padding: 3.5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden
}

.cta-banner::before {
  content: '★';
  position: absolute;
  font-size: 200px;
  color: rgba(228, 184, 74, 0.03);
  top: -40px;
  right: -20px;
  line-height: 1
}

.cta-title {
  font-family: var(--disp);
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 800;
  color: var(--t);
  margin-bottom: 1rem
}

.cta-sub {
  font-size: 15px;
  color: var(--t2);
  margin-bottom: 2rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto
}

.cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap
}

/* ── DIVIDER ── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--b), transparent);
  margin: 0
}

.divider-gold {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--bgold), transparent)
}

/* ── TIMELINE ── */
.timeline {
  position: relative;
  padding-left: 2.5rem;
  margin-top: 2rem
}

.timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), var(--bg3))
}

.tl-item {
  position: relative;
  margin-bottom: 2.5rem
}

.tl-dot {
  position: absolute;
  left: -2.5rem;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid var(--b);
  background: var(--bg);
  transition: var(--trans)
}

.tl-item.done .tl-dot {
  background: var(--bg2);
  border-color: var(--gold)
}

.tl-item.done .tl-dot::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--gold)
}

.tl-item.active .tl-dot {
  background: var(--gold);
  border-color: var(--gold2);
  box-shadow: 0 0 0 4px rgba(228, 184, 74, 0.2);
  animation: pulse-active 2s ease-in-out infinite
}

@keyframes pulse-active {

  0%,
  100% {
    box-shadow: 0 0 0 4px rgba(228, 184, 74, 0.2)
  }

  50% {
    box-shadow: 0 0 0 8px rgba(228, 184, 74, 0.05)
  }
}

.tl-year {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 4px
}

.tl-title {
  font-family: var(--disp);
  font-size: 18px;
  font-weight: 700;
  color: var(--t);
  margin-bottom: 6px
}

.tl-body {
  font-size: 14px;
  color: var(--t2);
  line-height: 1.75
}

.tl-list {
  list-style: none;
  margin-top: 6px;
  display: flex;
  flex-direction: column;
  gap: 4px
}

.tl-list li {
  font-size: 14px;
  color: var(--t2);
  display: flex;
  gap: 8px;
  align-items: flex-start
}

.tl-list li::before {
  content: '→';
  color: var(--gold);
  font-size: 12px;
  margin-top: 3px;
  flex-shrink: 0
}

.tl-badge {
  display: inline-block;
  background: rgba(228, 184, 74, 0.15);
  color: var(--gold);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  padding: 2px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  margin-left: 8px;
  vertical-align: middle
}

/* ── FAQ ── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem
}

.faq-item {
  border: 1px solid var(--b);
  border-radius: var(--r2);
  overflow: hidden;
  transition: var(--trans)
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.12)
}

.faq-q {
  width: 100%;
  text-align: left;
  background: var(--card);
  border: none;
  padding: 1.1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--t);
  transition: var(--trans)
}

.faq-q:hover {
  background: var(--cardh)
}

.faq-q.open {
  background: var(--gdim);
  color: var(--gold)
}

.faq-q i {
  font-size: 18px;
  color: var(--t3);
  transition: transform 0.3s;
  flex-shrink: 0
}

.faq-q.open i {
  transform: rotate(180deg);
  color: var(--gold)
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease
}

.faq-a-inner {
  font-size: 14px;
  color: var(--t2);
  line-height: 1.8;
  padding: 1rem 1.25rem 1.25rem;
  background: var(--bg1)
}

.faq-a-inner a {
  color: var(--gold);
  text-decoration: underline
}

/* ── WALLET CARDS ── */
.wallet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem
}

.wallet-card {
  background: var(--card);
  border: 1px solid var(--b);
  border-radius: var(--r);
  padding: 2rem;
  transition: var(--trans);
  display: flex;
  flex-direction: column
}

.wallet-card:hover {
  border-color: var(--bgold)
}

.wc-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 1rem
}

.wc-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--gdim);
  border: 1px solid var(--bgold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px
}

.wc-title {
  font-family: var(--disp);
  font-size: 18px;
  font-weight: 700;
  color: var(--t)
}

.wc-type {
  font-size: 11px;
  color: var(--t3);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 2px
}

.wc-body {
  font-size: 13px;
  color: var(--t2);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 1.5rem
}

.wc-downloads {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem
}

.dl-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg2);
  border: 1px solid var(--b);
  color: var(--t);
  font-size: 12px;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 6px;
  transition: var(--trans)
}

.dl-btn:hover {
  background: var(--bg3);
  border-color: var(--bgold);
  color: var(--gold)
}

.wc-warn {
  font-size: 12px;
  color: var(--red2);
  margin-top: 1rem;
  padding: 10px 14px;
  background: rgba(193, 48, 48, 0.08);
  border-radius: 6px;
  border-left: 3px solid var(--red)
}

/* ── BUY STEPS ── */
.buy-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem
}

.buy-step {
  position: relative
}

.step-num {
  font-family: var(--disp);
  font-size: 80px;
  font-weight: 800;
  color: rgba(228, 184, 74, 0.07);
  line-height: 1;
  position: absolute;
  top: -10px;
  left: -10px
}

.step-inner {
  position: relative;
  z-index: 1
}

.step-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gdim);
  border: 1px solid var(--bgold);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 1rem;
  text-transform: uppercase
}

.step-title {
  font-family: var(--disp);
  font-size: 24px;
  font-weight: 700;
  color: var(--t);
  margin-bottom: 0.75rem
}

.step-body {
  font-size: 14px;
  color: var(--t2);
  line-height: 1.8;
  margin-bottom: 1.25rem
}

.platform-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0
}

.platform-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--card);
  border: 1px solid var(--b);
  border-radius: 8px;
  padding: 10px 14px;
  transition: var(--trans)
}

.platform-item:hover {
  border-color: var(--bgold);
  background: var(--gdim)
}

.platform-item i {
  font-size: 18px;
  color: var(--gold)
}

.platform-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--t)
}

/* ── RESOURCES ── */
.resource-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem
}

.resource-card {
  background: var(--card);
  border: 1px solid var(--b);
  border-radius: var(--r);
  padding: 1.75rem;
  transition: var(--trans)
}

.resource-card:hover {
  border-color: var(--bgold);
  background: var(--cardh)
}

.rc-num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--t3);
  margin-bottom: 1rem
}

.rc-icon {
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block
}

.rc-title {
  font-family: var(--disp);
  font-size: 18px;
  font-weight: 700;
  color: var(--t);
  margin-bottom: 0.5rem
}

.rc-body {
  font-size: 13px;
  color: var(--t2);
  line-height: 1.75;
  margin-bottom: 1.25rem
}

.rc-links {
  display: flex;
  flex-direction: column;
  gap: 0.4rem
}

.rc-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--gold);
  transition: var(--trans)
}

.rc-link:hover {
  color: var(--gold2)
}

.rc-link i {
  font-size: 14px
}

/* ── AIRDROP ── */
.airdrop-hero {
  background: linear-gradient(135deg, var(--gdim), rgba(193, 48, 48, 0.06));
  border: 1px solid var(--bgold);
  border-radius: var(--r);
  padding: 3rem;
  text-align: center;
  margin-top: 2rem
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 2rem 0;
  flex-wrap: wrap
}

.cd-block {
  text-align: center;
  min-width: 80px
}

.cd-num {
  font-family: var(--disp);
  font-size: 48px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  display: block
}

.cd-label {
  font-size: 11px;
  color: var(--t3);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 4px
}

.cd-sep {
  font-family: var(--disp);
  font-size: 40px;
  font-weight: 700;
  color: var(--bgold);
  align-self: center;
  padding-top: 0;
  margin-top: -8px
}

.lock-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(193, 48, 48, 0.12);
  border: 1px solid rgba(193, 48, 48, 0.3);
  color: var(--red2);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 20px;
  margin-top: 1rem
}

/* ── COMMUNITY ── */
.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 2rem
}

.social-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--card);
  border: 1px solid var(--b);
  border-radius: var(--r);
  padding: 1.25rem 1.5rem;
  transition: var(--trans)
}

.social-card:hover {
  background: var(--cardh);
  border-color: var(--bgold);
  transform: translateY(-2px)
}

.sc-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--gdim);
  border: 1px solid var(--bgold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--gold);
  flex-shrink: 0
}

.sc-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--t)
}

.sc-desc {
  font-size: 12px;
  color: var(--t3);
  margin-top: 1px
}

/* ── STORE ── */
.coming-soon-block {
  text-align: center;
  padding: 5rem 2rem;
  background: var(--card);
  border: 1px solid var(--b);
  border-radius: var(--r);
  margin-top: 2rem
}

.cs-icon {
  font-size: 64px;
  color: var(--gold);
  opacity: 0.4;
  margin-bottom: 1.5rem;
  display: block
}

.cs-title {
  font-family: var(--disp);
  font-size: 28px;
  font-weight: 700;
  color: var(--t);
  margin-bottom: 0.75rem
}

.cs-body {
  font-size: 15px;
  color: var(--t2);
  max-width: 400px;
  margin: 0 auto 2rem
}

/* ── DONATE TABS ── */
.tab-row {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--b);
  margin-bottom: 2rem; 
}

.tab-btn {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  padding: 10px 20px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--t3);
  letter-spacing: 0.5px;
  transition: var(--trans);
  white-space: nowrap
}

.tab-btn:hover {
  color: var(--t)
}

.tab-btn.active {
  color: var(--gold);
  border-bottom-color: var(--gold)
}

.tab-panel {
  display: none
}

.tab-panel.active {
  display: block
}

.donate-desc {
  font-size: 14px;
  color: var(--t2);
  line-height: 1.8;
  max-width: 640px;
  margin-bottom: 1.5rem
}

.addr-card {
  background: var(--card);
  border: 1px solid var(--b);
  border-radius: var(--r2);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  max-width: 640px
}

.addr-info {
  flex: 1;
  min-width: 0
}

.addr-type {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 4px
}

.addr-val {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--t2);
  word-break: break-all
}

.copy-btn {
  background: var(--bg2);
  border: 1px solid var(--b);
  color: var(--t2);
  font-size: 12px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 6px;
  transition: var(--trans);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0
}

.copy-btn:hover {
  border-color: var(--bgold);
  color: var(--gold)
}

.copy-btn.copied {
  background: var(--gdim);
  border-color: var(--bgold);
  color: var(--gold)
}

/* ── FOOTER ── */
footer {
  background: var(--bg1);
  border-top: 1px solid var(--b);
  position: relative;
  z-index: 1
}

.footer-main {
  max-width: 1120px;
  margin: 0 auto;
  padding: 4rem 2rem 3rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem
}

.footer-brand-name {
  font-family: var(--disp);
  font-size: 22px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 0.75rem
}

.footer-tagline {
  font-size: 12px;
  color: var(--t3);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem
}

.footer-desc {
  font-size: 13px;
  color: var(--t2);
  line-height: 1.75;
  max-width: 280px
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 600;
  color: var(--t3);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem
}

.footer-col a {
  display: block;
  font-size: 13px;
  color: var(--t2);
  margin-bottom: 8px;
  transition: var(--trans)
}

.footer-col a:hover {
  color: var(--gold)
}

.footer-bottom {
  border-top: 1px solid var(--b);
  padding: 1.5rem 2rem;
  text-align: center;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--t3);
  letter-spacing: 1.5px;
  max-width: 1120px;
  margin: 0 auto
}

@media(max-width:800px) {
  .footer-main {
    grid-template-columns: 1fr 1fr
  }

  .footer-main>div:first-child {
    grid-column: 1/-1
  }
}

@media(max-width:750px) {
  .tokenomics { 
    grid-template-columns: 1fr !important;
  }
}

@media(max-width:600px) {
  .footer-main {
    grid-template-columns: 1fr
  }

  .hero-inner {
    grid-template-columns: 1fr
  }

  .hero-visual {
    display: none
  }

  .buy-steps {
    grid-template-columns: 1fr
  }

  .toke-grid {
    grid-template-columns: 1fr
  }

  .toke-donut-wrap {
    margin: 0 auto
  }

  .wrap {
    padding: 0 1.25rem
  }
  .tab-btn {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media(max-width:430px) {
  .hero-stats {
      gap: 1rem;
  }
}

.floating-donate {
  position: fixed;
  left: 24px;
  bottom: 24px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: #07090F;
  z-index: 999;
  box-shadow: 0 12px 35px rgba(228, 184, 74, .35);
  transition: .25s ease;
}

.floating-donate:hover {
  transform: translateY(-4px);
}

.popup {
  overflow: hidden;
}

.popup::after {
  content: '';
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  background: rgb(0 0 0 / 62%);
  z-index: 200;
}

.popup.d #pg-donate {
  display: block;
  position: fixed;
  background: var(--bg);
  width: min(90vw, 800px); 
  top: 50%;
  left: 0;
  right: 0;
  margin: auto;
  transform: translate(0, -50%);
  border: 1px solid var(--b);
  border-radius: var(--r);
  box-shadow: 0 0 20px rgb(0 0 0 / 13%);
  z-index: 400;
}
#pg-donate .section  {
    padding: 30px 10px 40px;
}

button.btn-gold {
    display: none;
}