/* ===========================
   CUSTOM PROPERTIES
   =========================== */
:root {
  --gold: #D4AF37;
  --gold2: #FF8C00;
  --gold-bright: #FFD700;
  --bg: #04080F;
  --bg2: #070C16;
  --bg3: #0A1220;
  --text: #EAEAEA;
  --muted: #8892A4;
  --border: rgba(255,255,255,0.07);
  --ticker-h: 34px;
  --nav-h: 70px;
  --header-h: calc(var(--ticker-h) + var(--nav-h));
}

/* ===========================
   LIGHT MODE OVERRIDES
   =========================== */
body.light {
  --bg: #F5F0E8;
  --bg2: #EAE4D8;
  --bg3: #DDD8CC;
  --text: #1A1A2E;
  --muted: #5A5872;
  --border: rgba(0,0,0,0.10);
}
body.light .ticker { background: linear-gradient(90deg, #1A1A2E, #0F0F1E); }
body.light nav.scrolled { background: rgba(245,240,232,.97); box-shadow: 0 1px 0 rgba(212,175,55,.15), 0 8px 32px rgba(0,0,0,.15); }
body.light .power-card { background: rgba(255,255,255,.85); border-color: rgba(0,0,0,.08); box-shadow: 0 4px 20px rgba(0,0,0,.1); }
body.light .feature-card { background: rgba(255,255,255,.7); border-color: rgba(0,0,0,.08); }
body.light .rm-card { background: rgba(255,255,255,.7); border-color: rgba(0,0,0,.08); }
body.light .rm-card.active-card { background: linear-gradient(135deg, rgba(212,175,55,.12), rgba(255,140,0,.06)); }
body.light .social-card { background: rgba(255,255,255,.7); border-color: rgba(0,0,0,.1); box-shadow: 0 4px 16px rgba(0,0,0,.12); }
body.light .social-card:hover { background: rgba(212,175,55,.15); }
body.light .tok-info-card { background: rgba(255,255,255,.7); }
body.light .buy-step { background: rgba(255,255,255,.7); }
body.light .dex-section { background: rgba(255,255,255,.5); }
body.light .ca-inner { background: rgba(212,175,55,.08); }
body.light .stats-bar { background: rgba(212,175,55,.08); }
body.light footer { background: #DDD8CC; }
body.light .footer-bottom { border-color: rgba(0,0,0,.1); }
body.light .gallery-item { box-shadow: 0 4px 16px rgba(0,0,0,.12); }
body.light .nav-links { background: linear-gradient(180deg, #EAE4D8 0%, #DDD8CC 100%); border-color: rgba(0,0,0,.1); }
body.light .hero-overlay {
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(0,0,0,.1) 0%, transparent 65%),
    linear-gradient(180deg, rgba(245,240,232,.05) 0%, rgba(245,240,232,.45) 100%);
}
body.light #about::after { opacity: .5; }
body.light #roadmap::after { opacity: .5; }

/* ===========================
   RESET AND BASE
   =========================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: 'DM Sans', sans-serif; overflow-x: hidden; line-height: 1.65; transition: background .35s, color .35s; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

::selection { background: rgba(212,175,55,.3); color: var(--gold-bright); }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(212,175,55,.4); border-radius: 3px; }

section { scroll-margin-top: var(--header-h); }
div[id] { scroll-margin-top: var(--header-h); }

/* ===========================
   TICKER
   =========================== */
.ticker {
  position: fixed; top: 0; width: 100%;
  height: var(--ticker-h);
  background: linear-gradient(90deg, rgba(10,18,32,.98), rgba(7,12,22,.98));
  border-bottom: 1px solid rgba(212,175,55,.18);
  overflow: hidden; z-index: 200;
  display: flex; align-items: center;
}
.ticker-track {
  display: flex; align-items: center; white-space: nowrap;
  animation: ticker-roll 28s linear infinite;
}
.tick-item { font-size: 10.5px; font-weight: 600; letter-spacing: 1.8px; text-transform: uppercase; color: var(--gold); padding: 0 18px; }
.tick-sep { color: rgba(212,175,55,.35); font-size: 6px; flex-shrink: 0; }
@keyframes ticker-roll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===========================
   NAVBAR
   =========================== */
nav {
  position: fixed; top: var(--ticker-h); width: 100%; height: var(--nav-h);
  z-index: 199; display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; transition: background .4s, box-shadow .4s;
}
nav.scrolled {
  background: rgba(4,8,15,.97);
  backdrop-filter: blur(28px); -webkit-backdrop-filter: blur(28px);
  box-shadow: 0 1px 0 rgba(212,175,55,.1), 0 8px 32px rgba(0,0,0,.55);
}
.nav-logo-link { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-logo-img-wrap {
  width: 40px; height: 40px; border-radius: 50%; overflow: hidden;
  border: 2px solid rgba(212,175,55,.55); flex-shrink: 0;
  box-shadow: 0 0 18px rgba(212,175,55,.28);
}
.nav-logo-img { width: 100%; height: 100%; object-fit: cover; }
.nav-logo-text {
  font-family: 'Cinzel', serif; font-size: 19px; font-weight: 700; letter-spacing: 3px;
  background: linear-gradient(135deg, #FFD700, #FF8C00);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
  color: var(--muted); font-size: 11.5px; font-weight: 500;
  letter-spacing: 1.4px; text-transform: uppercase;
  padding: 8px 12px; border-radius: 5px; transition: color .2s, background .2s;
}
.nav-link:hover, .nav-link.active { color: var(--text); background: rgba(255,255,255,.05); }
.btn-wallet {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 18px; border: 1px solid rgba(212,175,55,.38); border-radius: 6px;
  background: transparent; color: var(--gold); font-size: 11.5px; font-weight: 600;
  letter-spacing: 1px; transition: all .3s; white-space: nowrap;
}
.btn-wallet:hover { background: rgba(212,175,55,.1); border-color: var(--gold); box-shadow: 0 0 22px rgba(212,175,55,.22); }
.btn-wallet.connected { border-color: rgba(34,197,94,.45); color: #22c55e; }

/* Theme toggle button */
.btn-theme {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(212,175,55,.35);
  background: transparent; color: var(--gold);
  font-size: 14px; display: flex; align-items: center; justify-content: center;
  transition: all .3s; flex-shrink: 0;
}
.btn-theme:hover { background: rgba(212,175,55,.12); border-color: var(--gold); transform: rotate(15deg); }

/* Language selector */
.lang-selector { position: relative; }
.btn-lang {
  display: flex; align-items: center; gap: 6px;
  height: 36px; padding: 0 11px; border-radius: 6px;
  border: 1px solid rgba(212,175,55,.35);
  background: transparent; color: var(--gold);
  font-size: 11px; font-weight: 700; letter-spacing: 1.2px;
  transition: all .3s; flex-shrink: 0; white-space: nowrap;
}
.btn-lang:hover { background: rgba(212,175,55,.1); border-color: var(--gold); }
.btn-lang .fi { flex-shrink: 0; border-radius: 2px; }
.lang-chevron { font-size: 8px; transition: transform .22s; }
.lang-selector.open .lang-chevron { transform: rotate(180deg); }
.lang-dropdown {
  position: absolute; top: calc(100% + 8px); right: 0;
  background: rgba(6,11,20,.98); border: 1px solid rgba(212,175,55,.2);
  border-radius: 10px; padding: 6px; min-width: 164px; z-index: 250;
  opacity: 0; transform: translateY(-8px) scale(0.97); pointer-events: none;
  transition: opacity .2s, transform .2s;
  box-shadow: 0 14px 52px rgba(0,0,0,.7);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
}
.lang-selector.open .lang-dropdown { opacity: 1; transform: translateY(0) scale(1); pointer-events: all; }
.lang-option {
  display: flex; align-items: center; gap: 10px;
  width: 100%; padding: 9px 12px; border-radius: 7px;
  background: transparent; color: var(--muted);
  font-size: 12.5px; font-weight: 500; text-align: left; letter-spacing: .4px;
  transition: background .15s, color .15s;
}
.lang-option:hover { background: rgba(212,175,55,.1); color: var(--text); }
.lang-option.active { color: var(--gold); background: rgba(212,175,55,.07); }
.lang-option .fi { border-radius: 2px; width: 20px; height: 14px; object-fit: cover; }

.nav-right-mobile { display: none; align-items: center; gap: 8px; }
.btn-wallet-sm {
  width: 38px; height: 38px; border-radius: 8px;
  border: 1px solid rgba(212,175,55,.38); background: transparent;
  color: var(--gold); font-size: 14px;
  display: flex; align-items: center; justify-content: center; transition: all .25s;
}
.btn-wallet-sm:hover { background: rgba(212,175,55,.1); }
.hamburger {
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 38px; height: 38px; background: transparent;
  border: 1px solid rgba(255,255,255,.1); border-radius: 8px;
  padding: 9px; transition: border-color .3s; position: relative; z-index: 300;
}
.hamburger:hover { border-color: rgba(212,175,55,.45); }
.hamburger span {
  display: block; height: 1.5px; background: var(--text); border-radius: 2px;
  transform-origin: center; transition: all .38s cubic-bezier(.4,0,.2,1);
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); background: var(--gold); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); background: var(--gold); }

.nav-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.72); z-index: 197;
  opacity: 0; pointer-events: none;
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); transition: opacity .38s;
}
.nav-overlay.open { opacity: 1; pointer-events: all; }

/* ===========================
   HERO — fills 100% viewport, content pushed to bottom third
   =========================== */
#hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 580px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}
.slideshow { position: absolute; inset: 0; }
.slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 0.9s ease-in-out;
  overflow: hidden; background: var(--bg);
}
.slide.active { opacity: 1; }
.slide-img {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: brightness(.62) saturate(1.1);
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 90% 55% at 50% 0%, rgba(192,57,43,.14) 0%, transparent 60%),
    radial-gradient(ellipse 90% 55% at 50% 100%, rgba(26,74,138,.20) 0%, transparent 60%),
    linear-gradient(180deg, rgba(4,8,15,.12) 0%, rgba(4,8,15,.72) 70%, rgba(4,8,15,.88) 100%);
  z-index: 1;
}
#particles-canvas { position: absolute; inset: 0; z-index: 2; pointer-events: none; }

.hero-content {
  position: relative; z-index: 3; text-align: center;
  max-width: 980px; width: 100%;
  padding: 0 24px clamp(90px, 12vh, 150px);
}

.hero-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(38px, 8.5vw, 116px);
  font-weight: 700;
  line-height: .95; letter-spacing: clamp(3px, 0.6vw, 9px);
  margin-bottom: 16px; display: block;
  background: linear-gradient(145deg, #ffffff 0%, #FFE580 22%, #FFD700 45%, #FF9500 68%, #FFE580 86%, #ffffff 100%);
  background-size: 300% auto;
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  animation: hero-title-reveal 1.3s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both,
             title-shimmer 10s linear 1.7s infinite;
}
@keyframes hero-title-reveal {
  from { opacity: 0; transform: translateY(64px) scale(0.86); filter: blur(18px); }
  to   { opacity: 1; transform: translateY(0) scale(1);       filter: blur(0); }
}
@keyframes title-shimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 300% center; }
}
.hero-subtitle { animation: hero-fade-up .95s cubic-bezier(0.16, 1, 0.3, 1) 1.05s both; }
.hero-tagline  { animation: hero-fade-up .95s cubic-bezier(0.16, 1, 0.3, 1) 1.28s both; }
.hero-actions  { animation: hero-fade-up .95s cubic-bezier(0.16, 1, 0.3, 1) 1.5s both; }
@keyframes hero-fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(12px, 2vw, 19px); font-weight: 300;
  letter-spacing: 8px; text-transform: uppercase;
  color: rgba(255,255,255,.5); margin-bottom: 12px;
}
.hero-tagline {
  font-size: clamp(12px, 1.5vw, 16px); color: rgba(255,255,255,.36);
  letter-spacing: 1.5px; margin-bottom: 36px;
}
.hero-tagline strong { color: var(--gold); font-weight: 600; }
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.slide-nav {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 4;
}
.slide-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.3); border: none; cursor: pointer; transition: all .38s;
}
.slide-dot.active { background: var(--gold); width: 26px; border-radius: 4px; box-shadow: 0 0 14px rgba(212,175,55,.65); }
.hero-scroll {
  position: absolute; bottom: 68px; right: 32px; z-index: 4;
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  font-size: 9px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,.22); animation: bob 2.5s ease-in-out infinite;
}
@keyframes bob { 0%,100% { transform:translateY(0); } 50% { transform:translateY(8px); } }

/* ===========================
   BUTTONS
   =========================== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 36px; background: linear-gradient(135deg, #D4AF37, #FF8C00);
  color: #000; font-weight: 700; font-size: 13px;
  letter-spacing: 2px; text-transform: uppercase; border-radius: 5px; transition: all .3s;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 44px rgba(212,175,55,.48); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 36px; background: transparent; color: rgba(255,255,255,.8);
  font-weight: 600; font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
  border-radius: 5px; border: 1px solid rgba(255,255,255,.18); transition: all .3s;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ===========================
   STATS BAR
   =========================== */
.stats-bar {
  background: rgba(212,175,55,.04);
  border-top: 1px solid rgba(212,175,55,.1); border-bottom: 1px solid rgba(212,175,55,.1);
  padding: 18px 32px; display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 0;
}
.stat-item { text-align: center; padding: 6px 28px; }
.stat-label { font-size: 9.5px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; font-weight: 500; }
.stat-value { font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: 2px; color: var(--gold); }
.stat-value.success { color: #22c55e; }
.stat-divider { width: 1px; height: 34px; background: rgba(255,255,255,.07); flex-shrink: 0; }

/* ===========================
   LAYOUT COMMON
   =========================== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
section { padding: 100px 0; }
.sec-header { margin-bottom: 58px; }
.sec-header.center { text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10px; font-weight: 600; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.sec-title {
  font-family: 'Cinzel', serif; font-size: clamp(32px, 5vw, 64px);
  font-weight: 700; letter-spacing: 2px; line-height: 1.05; margin-bottom: 14px;
}
.sec-title span { color: var(--gold); }
.sec-sub { font-size: 15px; color: var(--muted); max-width: 540px; line-height: 1.78; margin: 0 auto; }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity .85s ease, transform .85s ease; transition-delay: var(--delay, 0s); }
.reveal.visible { opacity: 1; transform: translateY(0); }

.float-anim { animation: icon-float 4s ease-in-out infinite; animation-delay: var(--fd, 0s); }
@keyframes icon-float { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-6px); } }

/* ===========================
   CIRCULAR SECTION DECORATORS
   =========================== */
.sec-circle-row {
  display: flex; gap: 16px; justify-content: center;
  margin-bottom: 20px;
}
.sec-circle-img {
  width: 84px; height: 84px; border-radius: 50%; overflow: hidden;
  border: 2px solid var(--gold); box-shadow: 0 0 0 4px rgba(212,175,55,.12), 0 8px 24px rgba(0,0,0,.5);
  flex-shrink: 0;
}
.sec-circle-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sec-circle-sm {
  width: 58px; height: 58px; border-radius: 50%; overflow: hidden;
  border: 2px solid rgba(212,175,55,.55);
  box-shadow: 0 0 0 3px rgba(212,175,55,.1), 0 4px 16px rgba(0,0,0,.4);
  flex-shrink: 0; margin: 0 auto 16px;
}
.sec-circle-sm img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ===========================
   ABOUT
   =========================== */
#about { background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%); position: relative; overflow: hidden; }
#about::after {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(212,175,55,.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(212,175,55,.03) 1px, transparent 1px);
  background-size: 48px 48px; pointer-events: none;
}
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; position: relative; z-index: 1; }
.about-body p { color: var(--muted); line-height: 1.92; font-size: 15.5px; margin-bottom: 18px; }
.about-body strong { color: var(--text); }
.feature-list { display: flex; flex-direction: column; gap: 14px; }
.feature-card {
  display: flex; gap: 16px; align-items: flex-start; padding: 18px 20px;
  background: rgba(255,255,255,.02); border: 1px solid var(--border); border-radius: 10px; transition: all .3s;
}
.feature-card:hover { border-color: rgba(212,175,55,.22); background: rgba(212,175,55,.03); transform: translateX(5px); }
.fc-icon {
  width: 44px; height: 44px; background: linear-gradient(135deg, rgba(212,175,55,.14), rgba(255,140,0,.08));
  border: 1px solid rgba(212,175,55,.2); border-radius: 9px;
  display: flex; align-items: center; justify-content: center; font-size: 17px; color: var(--gold); flex-shrink: 0;
}
.fc-body h4 { font-family: 'Cinzel', serif; font-size: 14px; font-weight: 600; letter-spacing: .5px; margin-bottom: 4px; }
.fc-body p { font-size: 13px; color: var(--muted); line-height: 1.68; }

/* ===========================
   WORLD POWERS
   =========================== */
#powers { background: var(--bg2); position: relative; overflow: hidden; }
.section-bg-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(212,175,55,.055) 1px, transparent 1px);
  background-size: 28px 28px; pointer-events: none;
}
#powers::before {
  content: 'POWER'; position: absolute; font-family: 'Bebas Neue', sans-serif;
  font-size: 300px; color: rgba(255,255,255,.013); top: 50%; left: 50%;
  transform: translate(-50%,-50%); white-space: nowrap; pointer-events: none; user-select: none;
}
.powers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; position: relative; z-index: 1; }
.power-card {
  position: relative; background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.06); border-top: 3px solid var(--cc, var(--gold));
  border-radius: 12px; padding: 26px; overflow: hidden;
  transition: transform .38s cubic-bezier(.34,1.56,.64,1), box-shadow .38s;
}
.power-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at top left, rgba(255,255,255,.04), transparent 60%); pointer-events: none;
}
.power-card:hover { transform: translateY(-9px) scale(1.01); box-shadow: 0 26px 68px rgba(0,0,0,.58); }
.pc-flag { margin-bottom: 14px; }
.pc-flag .fi { width: 50px; height: 34px; border-radius: 4px; box-shadow: 0 4px 14px rgba(0,0,0,.5); display: inline-block; }
.pc-flag.brics span { font-family: 'Bebas Neue', sans-serif; font-size: 26px; letter-spacing: 5px; color: var(--cc, var(--gold)); }
.pc-name { font-family: 'Cinzel', serif; font-size: 17px; font-weight: 700; letter-spacing: .5px; margin-bottom: 3px; }
.pc-role { font-size: 9.5px; letter-spacing: 2px; text-transform: uppercase; color: var(--cc, var(--gold)); margin-bottom: 11px; }
.pc-desc { font-size: 12.5px; color: var(--muted); line-height: 1.74; margin-bottom: 16px; }
.pc-meters { display: flex; flex-direction: column; gap: 8px; }
.meter-row { display: flex; align-items: center; gap: 9px; font-size: 10px; color: var(--muted); }
.meter-row > span:first-child { width: 76px; flex-shrink: 0; }
.meter-bar { flex: 1; height: 3px; background: rgba(255,255,255,.06); border-radius: 2px; overflow: hidden; }
.meter-fill { height: 100%; width: 0; background: var(--cc, var(--gold)); border-radius: 2px; transition: width 1.7s cubic-bezier(.4,0,.2,1); }

/* ===========================
   TOKENOMICS
   =========================== */
#tokenomics { background: var(--bg); position: relative; overflow: hidden; }
#tokenomics::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(212,175,55,.04), transparent); pointer-events: none;
}
.tok-top-stats { display: grid; grid-template-columns: 1fr 2fr; gap: 24px; margin-bottom: 40px; position: relative; z-index: 1; }
.tok-main-stat {
  background: linear-gradient(135deg, rgba(212,175,55,.1), rgba(255,140,0,.06));
  border: 1px solid rgba(212,175,55,.25); border-radius: 16px; padding: 36px 24px;
  text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
}
.tok-main-stat > i { font-size: 32px; color: var(--gold); margin-bottom: 4px; }
.tok-main-num { font-family: 'Bebas Neue', sans-serif; font-size: clamp(24px, 3vw, 40px); letter-spacing: 2px; color: var(--gold-bright); line-height: 1; }
.tok-main-lbl { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--muted); }
.tok-info-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.tok-info-card {
  background: rgba(255,255,255,.02); border: 1px solid var(--border); border-radius: 12px;
  padding: 20px 16px; display: flex; flex-direction: column; align-items: center; gap: 6px; text-align: center; transition: all .3s;
}
.tok-info-card:hover { background: rgba(212,175,55,.04); border-color: rgba(212,175,55,.2); transform: translateY(-3px); }
.tok-info-card > i { font-size: 22px; color: var(--gold); }
.tok-info-card span { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 1px; color: var(--gold); }
.tok-info-card small { font-size: 9.5px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); }
.tok-info-card.success > i, .tok-info-card.success span { color: #22c55e; }
.tok-stacked-bar {
  display: flex; height: 54px; border-radius: 10px; overflow: hidden;
  margin-bottom: 50px; gap: 2px; position: relative; z-index: 1; box-shadow: 0 8px 34px rgba(0,0,0,.38);
}
.tsb-seg { position: relative; display: flex; align-items: center; justify-content: center; transition: flex .8s ease, opacity .3s; }
.tsb-seg:hover { opacity: .82; }
.tsb-seg span { font-size: 11.5px; font-weight: 700; color: rgba(0,0,0,.72); letter-spacing: 1px; white-space: nowrap; pointer-events: none; }
.tok-distro { display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; align-items: center; position: relative; z-index: 1; }
.tok-chart svg { width: 100%; max-width: 280px; display: block; margin: 0 auto; filter: drop-shadow(0 0 30px rgba(212,175,55,.12)); }
.tok-breakdown { display: flex; flex-direction: column; gap: 18px; }
.tok-row { display: flex; flex-direction: column; gap: 6px; }
.tok-row-left { display: flex; align-items: center; gap: 10px; }
.tok-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.tok-name { font-size: 14px; color: var(--text); font-weight: 500; }
.tok-pct-wrap { display: flex; align-items: center; gap: 12px; padding-left: 20px; }
.tok-pct-bar { flex: 1; height: 5px; border-radius: 3px; width: 0; max-width: var(--pw, 0%); transition: max-width 1.7s cubic-bezier(.4,0,.2,1); box-shadow: 0 0 8px currentColor; }
.tok-pct-num { font-family: 'Bebas Neue', sans-serif; font-size: 24px; letter-spacing: 1px; color: var(--gold); white-space: nowrap; min-width: 42px; text-align: right; }

/* ===========================
   HOW TO BUY
   =========================== */
#buy { background: var(--bg2); }
.buy-steps { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; gap: 0; align-items: start; margin-bottom: 72px; }
.buy-step {
  position: relative; background: rgba(255,255,255,.025);
  border: 1px solid var(--border); border-radius: 14px; padding: 30px 22px; text-align: center; overflow: hidden;
  transition: all .38s cubic-bezier(.34,1.56,.64,1);
}
.buy-step::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold2)); transform: scaleX(0); transform-origin: left; transition: transform .4s ease;
}
.buy-step:hover { transform: translateY(-7px); box-shadow: 0 22px 62px rgba(0,0,0,.52); border-color: rgba(212,175,55,.24); }
.buy-step:hover::after { transform: scaleX(1); }
.bs-number { font-family: 'Bebas Neue', sans-serif; font-size: 90px; line-height: 1; color: rgba(212,175,55,.06); position: absolute; top: 4px; right: 8px; pointer-events: none; user-select: none; }
.bs-icon-wrap {
  width: 64px; height: 64px; background: linear-gradient(135deg, rgba(212,175,55,.14), rgba(255,140,0,.08));
  border: 1px solid rgba(212,175,55,.25); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 23px; color: var(--gold);
  margin: 0 auto 18px; position: relative; z-index: 1; transition: all .3s;
}
.buy-step:hover .bs-icon-wrap { background: rgba(212,175,55,.22); box-shadow: 0 0 30px rgba(212,175,55,.32); transform: scale(1.1) rotate(5deg); }
.buy-step h3 { font-family: 'Cinzel', serif; font-size: 15px; font-weight: 600; letter-spacing: .5px; margin-bottom: 9px; position: relative; z-index: 1; }
.buy-step p { font-size: 13px; color: var(--muted); line-height: 1.78; margin-bottom: 16px; position: relative; z-index: 1; }
.bs-links { display: flex; flex-wrap: wrap; gap: 7px; justify-content: center; position: relative; z-index: 1; }
.bs-links a {
  font-size: 10.5px; font-weight: 600; letter-spacing: 1px; color: var(--gold);
  border: 1px solid rgba(212,175,55,.25); padding: 5px 11px; border-radius: 4px;
  display: inline-flex; align-items: center; gap: 5px; transition: all .2s;
}
.bs-links a:hover { background: rgba(212,175,55,.1); border-color: var(--gold); }
.step-arrow { display: flex; align-items: flex-start; justify-content: center; padding: 0 12px; padding-top: 56px; color: rgba(212,175,55,.38); font-size: 16px; animation: arrow-pulse 2.5s ease-in-out infinite; }
@keyframes arrow-pulse { 0%,100%{opacity:.38;transform:translateX(0);} 50%{opacity:.85;transform:translateX(5px);} }

.ca-section { text-align: center; }
.ca-inner {
  display: inline-flex; flex-direction: column; align-items: center; gap: 14px;
  background: rgba(212,175,55,.04); border: 1px solid rgba(212,175,55,.15); border-radius: 14px;
  padding: 36px 44px; width: 100%; max-width: 660px;
}
.ca-label-row { font-size: 10px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.ca-label-row i { color: var(--gold); }
.ca-box { display: flex; align-items: center; gap: 16px; background: rgba(0,0,0,.25); border: 1px solid rgba(212,175,55,.2); border-radius: 8px; padding: 13px 20px; width: 100%; flex-wrap: wrap; justify-content: center; }
.ca-addr { font-family: 'Courier New', monospace; font-size: 13.5px; color: var(--gold); word-break: break-all; text-align: center; }
.ca-copy { display: inline-flex; align-items: center; gap: 6px; background: rgba(212,175,55,.1); border: 1px solid rgba(212,175,55,.25); border-radius: 5px; color: var(--gold); font-size: 11.5px; font-weight: 600; letter-spacing: 1px; padding: 7px 13px; transition: all .2s; white-space: nowrap; flex-shrink: 0; }
.ca-copy:hover { background: rgba(212,175,55,.22); }
.ca-warning { font-size: 11px; color: rgba(255,255,255,.26); display: flex; align-items: center; gap: 6px; }
.ca-warning i { color: #F59E0B; flex-shrink: 0; }

/* ===========================
   ROADMAP
   =========================== */
#roadmap { background: var(--bg); position: relative; overflow: hidden; }
#roadmap::after {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(212,175,55,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(212,175,55,.025) 1px, transparent 1px);
  background-size: 56px 56px; pointer-events: none;
}
.rm-progress { margin-bottom: 50px; position: relative; z-index: 1; }
.rmp-top { display: flex; justify-content: space-between; margin-bottom: 10px; }
.rmp-label { font-size: 11px; font-weight: 600; letter-spacing: 1.5px; color: var(--muted); text-transform: uppercase; }
.rmp-phase-label { font-size: 11px; font-weight: 600; letter-spacing: 1.5px; color: var(--gold); text-transform: uppercase; }
.rmp-track { height: 6px; background: rgba(255,255,255,.06); border-radius: 3px; overflow: visible; margin-bottom: 13px; position: relative; }
.rmp-fill { height: 100%; width: 0; background: linear-gradient(90deg, var(--gold), var(--gold2)); border-radius: 3px; transition: width 2.4s cubic-bezier(.4,0,.2,1) .4s; position: relative; }
.rmp-fill::after { content: ''; position: absolute; right: -5px; top: 50%; transform: translateY(-50%); width: 16px; height: 16px; border-radius: 50%; background: var(--gold-bright); box-shadow: 0 0 16px var(--gold), 0 0 4px var(--gold-bright); animation: dot-pulse 2s ease-in-out infinite; }
@keyframes dot-pulse { 0%,100% { box-shadow:0 0 16px var(--gold); } 50% { box-shadow:0 0 28px var(--gold),0 0 8px var(--gold-bright); } }
.rmp-markers { display: flex; justify-content: space-between; }
.rmp-m { font-size: 10.5px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); }
.rmp-m.active { color: var(--gold); }
.roadmap-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; position: relative; z-index: 1; }
.rm-card {
  position: relative; background: rgba(255,255,255,.025); border: 1px solid var(--border);
  border-radius: 16px; padding: 30px 28px; overflow: hidden; transition: all .38s cubic-bezier(.34,1.56,.64,1);
}
.rm-card:hover { transform: translateY(-6px); box-shadow: 0 26px 64px rgba(0,0,0,.52); border-color: rgba(255,255,255,.1); }
.rm-card.active-card { border-color: rgba(212,175,55,.38); background: linear-gradient(135deg, rgba(212,175,55,.05), rgba(255,140,0,.02)); }
.rm-glow { position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); animation: glow-sweep 3s ease-in-out infinite; }
@keyframes glow-sweep { 0%,100% { opacity:0; } 50% { opacity:1; } }
.rm-bg-num { position: absolute; font-family: 'Bebas Neue', sans-serif; font-size: 170px; color: rgba(255,255,255,.025); right: -14px; bottom: -30px; line-height: 1; pointer-events: none; user-select: none; }
.active-card .rm-bg-num { color: rgba(212,175,55,.06); }
.rm-top { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 22px; }
.rm-icon-wrap { width: 52px; height: 52px; background: rgba(212,175,55,.1); border: 1px solid rgba(212,175,55,.2); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--gold); flex-shrink: 0; transition: all .3s; }
.rm-icon-wrap.pulse-ring { animation: icon-pulse-ring 2.5s ease-in-out infinite; background: rgba(212,175,55,.15); }
@keyframes icon-pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(212,175,55,.4); } 70% { box-shadow: 0 0 0 12px rgba(212,175,55,0); } 100% { box-shadow: 0 0 0 0 rgba(212,175,55,0); } }
.rm-card:hover .rm-icon-wrap { transform: scale(1.1) rotate(-5deg); }
.rm-meta { flex: 1; }
.rm-badge { display: inline-block; font-size: 9px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; padding: 3px 11px; border-radius: 100px; border: 1px solid; margin-bottom: 7px; }
.rm-active { color: var(--gold-bright); border-color: rgba(255,215,0,.4); background: rgba(255,215,0,.08); }
.rm-upcoming { color: #60A5FA; border-color: rgba(96,165,250,.4); background: rgba(96,165,250,.08); }
.rm-future { color: var(--muted); border-color: rgba(136,146,164,.25); background: rgba(136,146,164,.05); }
.rm-meta h3 { font-family: 'Bebas Neue', sans-serif; font-size: 30px; letter-spacing: 2px; line-height: 1.1; }
.rm-meta em { font-style: normal; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); }
.rm-list { display: flex; flex-direction: column; gap: 8px; }
.rm-list li { display: flex; align-items: center; gap: 11px; font-size: 13.5px; color: var(--muted); padding: 7px 10px; border-radius: 6px; transition: background .2s; }
.rm-list li:hover { background: rgba(255,255,255,.03); }
.rm-list li i { font-size: 14px; flex-shrink: 0; }
.rm-list li.done { color: rgba(34,197,94,.88); }
.rm-list li.done i { color: #22c55e; }
.rm-list li.pending { color: rgba(212,175,55,.78); }
.rm-list li.pending i { color: var(--gold); }

/* ===========================
   POWER ARCHIVES (GALLERY)
   =========================== */
#gallery { background: var(--bg2); position: relative; overflow: hidden; }
#gallery::before {
  content: 'ARCHIVE'; position: absolute; font-family: 'Bebas Neue', sans-serif;
  font-size: 280px; color: rgba(255,255,255,.012); top: 50%; left: 50%;
  transform: translate(-50%,-50%); white-space: nowrap; pointer-events: none; user-select: none;
}
.gallery-grid {
  columns: 4; column-gap: 14px;
  position: relative; z-index: 1;
}
.gallery-item {
  break-inside: avoid; margin-bottom: 14px;
  border-radius: 10px; overflow: hidden;
  cursor: pointer; position: relative;
  box-shadow: 0 4px 20px rgba(0,0,0,.45);
  transition: transform .38s cubic-bezier(.34,1.56,.64,1), box-shadow .38s;
}
.gallery-item:hover { transform: translateY(-4px) scale(1.01); box-shadow: 0 16px 48px rgba(0,0,0,.6); }
.gallery-item img { width: 100%; display: block; transition: transform .45s ease; filter: brightness(.88) saturate(1.1); }
.gallery-item:hover img { transform: scale(1.05); filter: brightness(1) saturate(1.15); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.65) 100%);
  opacity: 0; transition: opacity .35s;
  display: flex; align-items: flex-end; padding: 14px;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-num {
  font-family: 'Bebas Neue', sans-serif; font-size: 13px; letter-spacing: 3px;
  color: var(--gold); text-transform: uppercase;
}

/* Lightbox */
.lb-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.94);
  z-index: 1000; display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .35s;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.lb-overlay.active { opacity: 1; pointer-events: all; }
.lb-img {
  max-width: min(90vw, 1100px); max-height: 85vh;
  object-fit: contain; border-radius: 8px;
  box-shadow: 0 32px 80px rgba(0,0,0,.8);
  transition: opacity .25s;
}
.lb-close {
  position: absolute; top: 20px; right: 24px;
  color: rgba(255,255,255,.7); font-size: 28px; cursor: pointer; background: none; border: none;
  line-height: 1; transition: color .2s, transform .2s;
}
.lb-close:hover { color: var(--gold); transform: rotate(90deg); }
.lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  color: rgba(255,255,255,.5); font-size: 28px; cursor: pointer; background: rgba(0,0,0,.4);
  border: 1px solid rgba(255,255,255,.15); border-radius: 50%; width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center; transition: all .25s;
}
.lb-nav:hover { color: var(--gold); border-color: var(--gold); background: rgba(0,0,0,.6); }
.lb-prev { left: 20px; }
.lb-next { right: 20px; }

/* ===========================
   COMMUNITY
   =========================== */
#community { background: var(--bg); position: relative; overflow: hidden; padding-bottom: 80px; }
.community-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(212,175,55,.05), transparent 70%); pointer-events: none; }
.social-grid { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 16px; position: relative; z-index: 1; }
.social-card {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 20px 24px; background: rgba(255,255,255,.05);
  backdrop-filter: blur(18px) saturate(1.7); -webkit-backdrop-filter: blur(18px) saturate(1.7);
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 4px 24px rgba(0,0,0,.3), inset 0 1px 0 rgba(255,255,255,.08);
  border-radius: 14px; color: var(--text); min-width: 110px; transition: all .38s cubic-bezier(.34,1.56,.64,1);
}
.social-card i { font-size: 20px; transition: transform .38s cubic-bezier(.34,1.56,.64,1); }
.social-card span { font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; }
.social-card:hover { background: rgba(212,175,55,.1); backdrop-filter: blur(24px) saturate(2); -webkit-backdrop-filter: blur(24px) saturate(2); border-color: rgba(212,175,55,.38); transform: translateY(-9px) scale(1.05); box-shadow: 0 22px 54px rgba(0,0,0,.38), 0 0 22px rgba(212,175,55,.16); color: var(--gold); }
.social-card:hover i { transform: scale(1.22) rotate(-8deg); }

/* ===========================
   FOOTER
   =========================== */
footer { background: #020508; border-top: 1px solid rgba(212,175,55,.07); padding: 60px 0 0; }
.footer-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo-row { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.footer-logo-img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(212,175,55,.42); }
.footer-logo-text { font-family: 'Cinzel', serif; font-size: 20px; font-weight: 700; letter-spacing: 2px; background: linear-gradient(135deg, #FFD700, #FF8C00); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.footer-tag { font-size: 13.5px; color: var(--muted); margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-socials a { width: 34px; height: 34px; border-radius: 7px; border: 1px solid var(--border); background: rgba(255,255,255,.03); display: flex; align-items: center; justify-content: center; color: var(--muted); font-size: 14px; transition: all .25s; }
.footer-socials a:hover { border-color: rgba(212,175,55,.38); color: var(--gold); background: rgba(212,175,55,.08); }
.footer-nav { display: flex; gap: 48px; }
.footer-col { display: flex; flex-direction: column; gap: 11px; }
.footer-col h5 { font-family: 'Cinzel', serif; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--text); margin-bottom: 4px; }
.footer-col a { font-size: 13.5px; color: var(--muted); transition: color .2s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid var(--border); padding: 26px 0; display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; }
.footer-disc { font-size: 10.5px; color: rgba(255,255,255,.2); max-width: 680px; line-height: 1.82; }
.footer-copy { font-size: 10.5px; color: rgba(255,255,255,.2); }
body.light .footer-disc, body.light .footer-copy { color: rgba(0,0,0,.35); }

.float-buy {
  position: fixed; bottom: 22px; right: 22px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #000; font-weight: 700; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 13px 24px; border-radius: 100px; display: none; align-items: center; gap: 8px;
  box-shadow: 0 8px 28px rgba(212,175,55,.5); z-index: 150;
  opacity: 0; transform: translateY(20px); transition: opacity .4s, transform .4s;
}
.float-buy.visible { opacity: 1; transform: translateY(0); }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1200px) {
  .powers-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 48px; }
  .tok-top-stats { grid-template-columns: 1fr; }
  .tok-main-stat { flex-direction: row; justify-content: flex-start; text-align: left; padding: 20px 24px; }
  .tok-main-stat > i { margin-bottom: 0; }
  .gallery-grid { columns: 3; }
}

@media (max-width: 1024px) {
  nav { padding: 0 22px; }
  .nav-links {
    position: fixed; top: 0; right: 0;
    width: min(310px, 82vw); height: 100vh; height: 100dvh;
    background: linear-gradient(180deg, #07101E 0%, #040810 100%);
    border-left: 1px solid rgba(212,175,55,.14);
    flex-direction: column; align-items: flex-start; justify-content: center;
    gap: 4px; padding: 90px 30px 40px; z-index: 198;
    transform: translateX(100%);
    transition: transform .42s cubic-bezier(.4,0,.2,1), visibility 0s linear .42s;
    visibility: hidden; box-shadow: -24px 0 80px rgba(0,0,0,.6); overflow-y: auto;
  }
  .nav-links.open { transform: translateX(0); visibility: visible; transition: transform .42s cubic-bezier(.4,0,.2,1), visibility 0s; }
  .nav-links li { width: 100%; }
  .nav-link { font-size: 15px; letter-spacing: 2px; padding: 13px 16px; display: block; width: 100%; border-radius: 8px; border-bottom: 1px solid rgba(255,255,255,.04); }
  .btn-wallet { width: 100%; justify-content: center; padding: 13px; font-size: 13px; margin-top: 14px; border-radius: 8px; }
  .btn-lang { width: 100%; margin-top: 8px; justify-content: flex-start; }
  .lang-dropdown { position: relative; top: auto; right: auto; box-shadow: none; border-color: rgba(255,255,255,.07); }
  .lang-selector.open .lang-dropdown { transform: none; }
  .nav-right-mobile { display: flex; }
  .buy-steps { grid-template-columns: 1fr; gap: 0; }
  .step-arrow { padding: 12px 0; transform: rotate(90deg); animation: none; align-items: center; justify-content: center; height: 44px; }
  .tok-distro { grid-template-columns: 1fr; gap: 36px; }
  .roadmap-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .float-buy { display: flex; }
  .gallery-grid { columns: 2; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; --ticker-h: 30px; }
  section { padding: 72px 0; }
  .sec-title { font-size: clamp(28px, 7.5vw, 48px); }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .powers-grid { grid-template-columns: 1fr; }
  .tok-info-cards { grid-template-columns: repeat(2, 1fr); }
  .stats-bar { padding: 14px 16px; flex-wrap: wrap; gap: 14px; justify-content: center; }
  .stat-item { padding: 0 14px; }
  .stat-divider { display: none; }
  .footer-nav { flex-direction: column; gap: 22px; }
  .ca-inner { padding: 28px 20px; }
  .buy-steps { margin-bottom: 48px; }
  .tick-item { font-size: 9.5px; padding: 0 12px; }
  /* Show full 16:9 image on mobile — no crop, full composition visible */
  .slide-img {
    object-fit: contain;
    object-position: top center;
    background-color: #04080F;
    filter: brightness(.84) saturate(1.1);
  }
  .hero-content { padding: 0 16px clamp(72px, 11vh, 120px); }
  .hero-scroll { display: none; }
  .sec-circle-img { width: 66px; height: 66px; }
  .gallery-grid { columns: 2; }
  .lb-nav { width: 42px; height: 42px; font-size: 22px; }
  .lb-prev { left: 10px; }
  .lb-next { right: 10px; }
}

@media (max-width: 540px) {
  :root { --ticker-h: 0px; }
  .ticker { display: none; }
  nav { padding: 0 14px; }
  .nav-logo-text { font-size: 16px; letter-spacing: 2px; }
  #hero { min-height: 100svh; }
  .hero-content { padding: 0 14px clamp(70px, 10vh, 110px); }
  .hero-title { font-size: clamp(30px, 10.5vw, 68px); letter-spacing: 2px; }
  /* Keep full image visible on all small phones too */
  .slide-img { object-fit: contain; object-position: top center; background-color: #04080F; filter: brightness(.84) saturate(1.1); }
  .hero-tagline { margin-bottom: 28px; }
  .btn-primary, .btn-ghost { padding: 12px 20px; font-size: 12px; letter-spacing: 1.5px; }
  .buy-step { padding: 22px 16px; }
  .bs-number { font-size: 70px; }
  .tok-info-cards { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .tok-stacked-bar { height: 42px; }
  .tsb-seg span { font-size: 9.5px; }
  .social-grid { gap: 10px; }
  .social-card { padding: 18px 20px; min-width: 90px; }
  .social-card i { font-size: 21px; }
  .social-card span { font-size: 9px; }
  .footer-nav { flex-direction: row; flex-wrap: wrap; gap: 28px; }
  .rm-card { padding: 22px 18px; }
  .rm-bg-num { font-size: 120px; }
  .rm-meta h3 { font-size: 26px; }
  .powers-grid { gap: 14px; }
  .hero-subtitle { letter-spacing: 5px; }
  .sec-circle-row { gap: 12px; }
  .sec-circle-img { width: 54px; height: 54px; }
  .sec-circle-sm { width: 46px; height: 46px; }
  .gallery-grid { columns: 2; column-gap: 8px; }
  .gallery-item { margin-bottom: 8px; }
  .hero-scroll { right: 16px; }
}

@media (max-width: 380px) {
  .hero-title { font-size: clamp(26px, 9.5vw, 56px); letter-spacing: 1px; }
  .social-card { min-width: 80px; padding: 16px 14px; }
  .tok-info-cards { grid-template-columns: 1fr 1fr; gap: 8px; }
  .nav-logo-text { display: none; }
  .gallery-grid { columns: 1; }
}

@media (max-height: 500px) and (orientation: landscape) {
  #hero { height: 100svh; min-height: unset; }
  .hero-title { font-size: clamp(40px, 10vh, 82px); }
  .hero-content { padding-bottom: 60px; }
  .hero-tagline { display: none; }
}
