/* ===== FLOKI TRILLIONAIRE — Luxury CEO Theme ===== */
:root {
  --gold: #d4af37;
  --gold-light: #f5d76e;
  --gold-dark: #9a7b2f;
  --gold-glow: rgba(212, 175, 55, 0.45);
  --black: #050505;
  --black-soft: #0c0b0a;
  --brown: #2a1810;
  --brown-light: #4a2f1a;
  --cream: #f5efe6;
  --text: #e8e0d4;
  --text-muted: #9a9080;
  --x-blue: #1d9bf0;
  --uni-pink: #ff007a;
  --dex-green: #00d395;
  --glass: rgba(12, 10, 8, 0.72);
  --border-gold: rgba(212, 175, 55, 0.35);
  --font-display: "Cinzel", serif;
  --font-script: "Great Vibes", cursive;
  --font-body: "Outfit", sans-serif;
  --header-h: 72px;
  --radius: 16px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  cursor: default;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

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

.gold { color: var(--gold-light); }

/* ===== BACKGROUND EFFECTS ===== */
#starfield {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.6;
}

.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 20%, rgba(212, 175, 55, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(74, 47, 26, 0.15) 0%, transparent 50%),
    linear-gradient(180deg, var(--black) 0%, var(--brown) 50%, var(--black) 100%);
  z-index: -2;
}

.floating-icons {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.float-icon {
  position: absolute;
  width: 36px;
  height: 36px;
  opacity: 0.18;
  animation: floatIcon 18s ease-in-out infinite;
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.3));
}

.float-icon.e1 { top: 12%; left: 8%; animation-delay: 0s; width: 42px; }
.float-icon.e2 { top: 25%; right: 10%; animation-delay: -3s; }
.float-icon.e3 { top: 55%; left: 5%; animation-delay: -6s; width: 32px; }
.float-icon.e4 { top: 70%; right: 15%; animation-delay: -9s; }
.float-icon.e5 { top: 40%; left: 85%; animation-delay: -12s; width: 28px; }
.float-icon.e6 { top: 85%; left: 20%; animation-delay: -4s; width: 40px; }
.float-icon.e7 { top: 15%; left: 50%; animation-delay: -7s; }
.float-icon.e8 { top: 60%; right: 5%; animation-delay: -15s; width: 30px; }

@keyframes floatIcon {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-30px) rotate(8deg); }
  50% { transform: translateY(-15px) rotate(-5deg); }
  75% { transform: translateY(-40px) rotate(3deg); }
}

/* ===== TICKER ===== */
.ticker-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
  background-size: 200% 100%;
  animation: shimmerBg 4s linear infinite;
  overflow: hidden;
  height: 32px;
}

.ticker {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
  padding: 6px 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  align-items: center;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.ticker-item img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes shimmerBg {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 32px;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
}

.header.scrolled {
  background: var(--glass);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-gold);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

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

.nav-logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  object-fit: cover;
  box-shadow: 0 0 20px var(--gold-glow);
}

.nav-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { width: 100%; }

.btn-nav-buy {
  padding: 0.5rem 1.25rem !important;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light)) !important;
  color: var(--black) !important;
  border-radius: 999px;
  font-weight: 700 !important;
  box-shadow: 0 0 20px var(--gold-glow);
  transition: transform var(--transition), box-shadow var(--transition) !important;
}

.btn-nav-buy::after { display: none !important; }
.btn-nav-buy:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px var(--gold-glow);
  color: var(--black) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.15) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.btn:hover::before { transform: translateX(100%); }

.btn-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: contain;
}

.dex-icon {
  border-radius: 6px;
  background: rgba(0, 211, 149, 0.15);
  padding: 2px;
}

.title-icon.dex-icon {
  width: 40px;
  height: 40px;
  padding: 4px;
  background: rgba(0, 211, 149, 0.12);
  border-radius: 10px;
  vertical-align: middle;
}

.social-icon.dex-icon {
  background: rgba(0, 211, 149, 0.12);
  padding: 6px;
  border-radius: 12px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  color: var(--black);
  box-shadow: 0 4px 24px var(--gold-glow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px var(--gold-glow);
}

.btn-secondary {
  background: rgba(0, 211, 149, 0.12);
  border: 1px solid rgba(0, 211, 149, 0.4);
  color: var(--dex-green);
}

.btn-secondary:hover {
  background: rgba(0, 211, 149, 0.22);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 211, 149, 0.2);
}

.btn-x {
  background: rgba(29, 155, 240, 0.12);
  border: 1px solid rgba(29, 155, 240, 0.4);
  color: var(--x-blue);
}

.btn-x:hover {
  background: rgba(29, 155, 240, 0.22);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(29, 155, 240, 0.2);
}

.btn-lg { padding: 1rem 2.25rem; font-size: 1rem; }


/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-h) + 48px) 0 4rem;
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5,5,5,0.7) 0%, rgba(5,5,5,0.85) 40%, rgba(42,24,16,0.92) 100%),
    radial-gradient(ellipse at center, transparent 30%, rgba(5,5,5,0.6) 100%);
}

.hero-orbs .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orbPulse 8s ease-in-out infinite;
  pointer-events: none;
}

.orb-1 {
  width: 400px; height: 400px;
  background: rgba(212, 175, 55, 0.12);
  top: 10%; left: -10%;
  animation-delay: 0s;
}

.orb-2 {
  width: 300px; height: 300px;
  background: rgba(74, 47, 26, 0.25);
  bottom: 20%; right: -5%;
  animation-delay: -3s;
}

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

@keyframes orbPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.15); }
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border: 1px solid var(--border-gold);
  border-radius: 999px;
  background: var(--glass);
  backdrop-filter: blur(10px);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}

.badge-icon { width: 18px; height: 18px; }

.hero-logo-wrap {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto 1.5rem;
}

.logo-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid transparent;
  background: linear-gradient(var(--black), var(--black)) padding-box,
              linear-gradient(135deg, var(--gold-dark), var(--gold-light), var(--gold-dark)) border-box;
  animation: spinRing 8s linear infinite;
}

@keyframes spinRing {
  to { transform: rotate(360deg); }
}

.hero-logo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
  box-shadow: 0 0 60px var(--gold-glow), 0 0 120px rgba(212, 175, 55, 0.15);
  animation: logoFloat 4s ease-in-out infinite;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-title {
  margin-bottom: 0.5rem;
  line-height: 1.1;
}

.title-floki {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldShimmer 3s linear infinite;
  letter-spacing: 0.06em;
}

.title-script {
  display: block;
  font-family: var(--font-script);
  font-size: clamp(2rem, 6vw, 3.5rem);
  color: var(--gold-light);
  text-shadow: 0 0 40px var(--gold-glow);
  margin-top: -0.25rem;
}

@keyframes goldShimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.hero-symbol {
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 2.5vw, 1.15rem);
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.hero-bio {
  max-width: 520px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
  color: var(--cream);
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.hero-contract {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1.25rem;
  background: var(--glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  font-size: 0.8rem;
}

.contract-label {
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.contract-address {
  font-family: "Courier New", monospace;
  color: var(--gold-light);
  font-size: 0.75rem;
  word-break: break-all;
}

.copy-btn {
  color: var(--gold);
  padding: 0.25rem;
  border-radius: 6px;
  transition: background var(--transition);
}

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

.scroll-hint {
  display: block;
  margin: 2.5rem auto 0;
  width: 28px;
  height: 44px;
  border: 2px solid var(--border-gold);
  border-radius: 14px;
  position: relative;
}

.scroll-hint span {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { top: 8px; opacity: 1; }
  50% { top: 20px; opacity: 0.3; }
}

/* ===== SECTIONS ===== */
.section {
  position: relative;
  padding: 6rem 0;
  z-index: 2;
}

.section-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.title-icon {
  width: 40px;
  height: 40px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.5rem;
  border-radius: 8px;
}

.title-underline {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1rem auto 0;
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
}

.about-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px var(--gold-glow);
}

.about-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.about-frame:hover .about-img { transform: scale(1.05); }

.frame-corner {
  position: absolute;
  width: 30px;
  height: 30px;
  border-color: var(--gold);
  border-style: solid;
  z-index: 2;
}

.fc-tl { top: 12px; left: 12px; border-width: 2px 0 0 2px; }
.fc-tr { top: 12px; right: 12px; border-width: 2px 2px 0 0; }
.fc-bl { bottom: 12px; left: 12px; border-width: 0 0 2px 2px; }
.fc-br { bottom: 12px; right: 12px; border-width: 0 2px 2px 0; }

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.stat-card {
  text-align: center;
  padding: 1rem 0.5rem;
  background: var(--glass);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  transition: transform var(--transition), box-shadow var(--transition);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px var(--gold-glow);
}

.stat-icon { width: 32px; height: 32px; margin: 0 auto 0.5rem; }
.stat-value { display: block; font-family: var(--font-display); font-weight: 700; color: var(--gold-light); font-size: 0.95rem; }
.stat-label { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }

.about-desc {
  font-size: 1.05rem;
  color: var(--cream);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.about-desc p { margin-bottom: 1.25rem; }

.about-highlights { display: flex; flex-direction: column; gap: 1.25rem; }

.highlight-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--glass);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  transition: transform var(--transition), border-color var(--transition);
}

.highlight-item:hover {
  transform: translateX(8px);
  border-color: var(--gold);
}

.highlight-icon { width: 36px; height: 36px; flex-shrink: 0; }
.highlight-item strong { display: block; color: var(--gold-light); font-family: var(--font-display); margin-bottom: 0.25rem; }
.highlight-item p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

/* ===== HOW TO BUY ===== */
.howtobuy {
  background: linear-gradient(180deg, transparent, rgba(42, 24, 16, 0.4), transparent);
}

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

.step-card {
  position: relative;
  padding: 2rem 1.5rem;
  background: var(--glass);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
  overflow: hidden;
}

.step-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  transform: scaleX(0);
  transition: transform var(--transition);
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 0 0 30px var(--gold-glow);
}

.step-card:hover::before { transform: scaleX(1); }

.step-num {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: rgba(212, 175, 55, 0.12);
}

.step-icon-wrap {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.08);
  border-radius: 50%;
  border: 1px solid var(--border-gold);
}

.step-icon { width: 40px; height: 40px; border-radius: 8px; object-fit: contain; }

.step-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
}

.step-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.step-copy {
  margin-top: 1rem;
  padding: 0.4rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  border: 1px solid var(--border-gold);
  border-radius: 999px;
  transition: background var(--transition);
}

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

.buy-cta { text-align: center; }

/* ===== CHART ===== */
.chart-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  background: #0d1117;
}

.chart-wrap iframe {
  width: 100%;
  height: 600px;
  border: none;
  display: block;
}

.chart-link-wrap { text-align: center; margin-top: 2rem; }

/* ===== JOIN US ===== */
.joinus {
  position: relative;
  overflow: hidden;
}

.joinus-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at bottom, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.joinus-banner-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--border-gold);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6), 0 0 60px var(--gold-glow);
  margin-bottom: 2rem;
}

.joinus-banner {
  width: 100%;
  display: block;
  animation: bannerReveal 1.2s ease-out;
}

@keyframes bannerReveal {
  from { opacity: 0; transform: scale(1.05); }
  to { opacity: 1; transform: scale(1); }
}

.banner-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.08) 50%, transparent 60%);
  animation: bannerShine 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes bannerShine {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.joinus-text {
  text-align: center;
  font-size: 1.15rem;
  color: var(--cream);
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.joinus-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--glass);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.social-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 12px 32px var(--gold-glow);
}

.social-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  flex-shrink: 0;
}

.social-card strong { display: block; font-family: var(--font-display); color: var(--gold-light); margin-bottom: 0.15rem; }
.social-card span { font-size: 0.8rem; color: var(--text-muted); }

/* ===== FOOTER ===== */
.footer {
  position: relative;
  z-index: 2;
  padding: 3rem 0;
  border-top: 1px solid var(--border-gold);
  background: rgba(5, 5, 5, 0.8);
}

.footer-inner { text-align: center; }

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--gold-light);
}

.footer-logo {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--gold);
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 0.75rem;
}

.footer-copy { font-size: 0.7rem; color: var(--text-muted); }

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  padding: 0.75rem 1.5rem;
  background: var(--gold);
  color: var(--black);
  font-weight: 700;
  border-radius: 999px;
  z-index: 9999;
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  box-shadow: 0 8px 24px var(--gold-glow);
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .joinus-links { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: calc(32px + var(--header-h));
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--glass);
    backdrop-filter: blur(20px);
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--border-gold);
    transform: translateY(-120%);
    opacity: 0;
    transition: transform var(--transition), opacity var(--transition);
    pointer-events: none;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .hero-cta { flex-direction: column; align-items: center; }
  .hero-cta .btn { width: 100%; max-width: 320px; justify-content: center; }
  .steps-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr; }
  .chart-wrap iframe { height: 450px; }
  .hero-logo-wrap { width: 160px; height: 160px; }
  .hero-contract { flex-wrap: wrap; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
