/* ═══════════════════════════════════════════════
   DhaniWin Agent Club — Stylesheet
   ═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=DM+Sans:wght@300;400;500;600&family=DM+Mono:wght@400;500&display=swap');
@import 'colors.css';
@import 'nav.css';

/* ── Reset ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 72px; }
body {
  background: var(--bg-base);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track  { background: var(--purple-900); }
::-webkit-scrollbar-thumb  { background: var(--gold-600); border-radius: 3px; }

/* ── Noise overlay ───────────────────────────── */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 1; opacity: 0.4;
}

/* ── Particles ───────────────────────────────── */
#particles-canvas {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 0; opacity: 0.4;
}

/* ── Layout ──────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

section { position: relative; z-index: 2; }

/* ── Buttons ─────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 28px;
  border-radius: 50px;
  cursor: pointer;
  border: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.btn-lg { padding: 15px 36px; font-size: 1rem; }

.btn-gold {
  background: linear-gradient(135deg, #C9A84C 0%, #F5D06A 45%, #E0B84A 100%);
  color: var(--purple-900);
  box-shadow: 0 6px 24px rgba(201,168,76,0.35);
}
.btn-gold:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 12px 36px rgba(201,168,76,0.55);
}
.btn-outline {
  background: transparent;
  color: var(--gold-400);
  border: 1.5px solid rgba(201,168,76,0.5);
}
.btn-outline:hover {
  background: rgba(201,168,76,0.1);
  transform: translateY(-3px);
  border-color: var(--gold-400);
}

/* ── Section Shared ──────────────────────────── */
.section { padding: 20px 0; }
.section-alt {
  background: linear-gradient(180deg, var(--bg-base) 0%, var(--purple-900) 50%, var(--bg-base) 100%);
}
.section-header { text-align: center; margin-bottom: 64px; }
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 14px;
}
.section-eyebrow::before, .section-eyebrow::after {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--gold-500);
  opacity: 0.5;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.section-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}
.gold-text {
  background: linear-gradient(135deg, #C9A84C 0%, #F5D06A 45%, #E0B84A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gold-rule {
  width: 60px; height: 2px;
  background: linear-gradient(135deg, #C9A84C, #F5D06A);
  margin: 20px auto 0;
  border-radius: 2px;
}

/* ── Reveal animation ────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── HERO ────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 24px 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #0D0719 0%, #180F30 50%, #0D0719 100%);
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 160px;
  background: linear-gradient(to bottom, transparent, var(--bg-base));
  z-index: 1;
}
.hero-bg-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 800px; height: 800px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: orbDrift 8s ease-in-out infinite alternate;
}
.hero-orb-1 {
  width: 400px; height: 400px;
  background: rgba(74,50,120,0.5);
  top: -80px; left: -100px;
}
.hero-orb-2 {
  width: 280px; height: 280px;
  background: rgba(201,168,76,0.07);
  bottom: 60px; right: -40px;
  animation-delay: -4s;
}
@keyframes orbDrift {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(20px,-15px) scale(1.04); }
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-400);
  border: 1px solid rgba(201,168,76,0.3);
  background: rgba(201,168,76,0.08);
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 28px;
  animation: fadeInDown 0.8s both;
}
.eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-400);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:0.5; transform:scale(0.8); }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0.01em;
  color: var(--text-primary);
  margin-bottom: 20px;
  animation: fadeInUp 0.9s 0.1s both;
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-secondary);
  max-width: 540px;
  line-height: 1.75;
  margin-bottom: 40px;
  animation: fadeInUp 0.9s 0.2s both;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  margin-bottom: 40px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 16px;
  padding: 20px 28px;
  animation: fadeInUp 0.9s 0.3s both;
}
.hero-stat {
  flex: 1;
  min-width: 100px;
  text-align: center;
  padding: 8px 16px;
}
.hero-stat-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg,#C9A84C,#F5D06A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 4px;
}
.hero-stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}
.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(201,168,76,0.2);
  flex-shrink: 0;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeInUp 0.9s 0.4s both;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--gold-600);
  animation: bounce 2s ease-in-out infinite;
  opacity: 0.6;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}
@keyframes fadeInDown {
  from { opacity:0; transform:translateY(-20px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes fadeInUp {
  from { opacity:0; transform:translateY(24px); }
  to   { opacity:1; transform:translateY(0); }
}

/* ── STEPS TIMELINE ──────────────────────────── */
.steps-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}
.step-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 0 24px;
  align-items: flex-start;
  position: relative;
}
.step-connector {
  position: absolute;
  left: 29px;
  top: 60px;
  bottom: -24px;
  width: 2px;
  background: linear-gradient(to bottom, rgba(201,168,76,0.4), transparent);
}
.step-node {
  width: 60px; height: 60px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.step-node-inner {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(145deg, #1A1030, #251840);
  border: 2px solid rgba(201,168,76,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-400);
  box-shadow: 0 0 20px rgba(201,168,76,0.2);
  transition: all 0.3s;
}
.step-item:hover .step-node-inner {
  border-color: var(--gold-400);
  box-shadow: 0 0 30px rgba(201,168,76,0.4);
  background: linear-gradient(145deg, #241540, #331e58);
}
.step-card {
  background: linear-gradient(145deg, #110A22, #180F30);
  border: 1px solid rgba(180,157,224,0.12);
  border-radius: 20px;
  padding: 28px 28px 28px 28px;
  margin-bottom: 24px;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  position: relative;
  overflow: hidden;
}
.step-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}
.step-item:hover .step-card {
  border-color: rgba(201,168,76,0.3);
  transform: translateX(6px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.step-item:hover .step-card::before { opacity: 1; }
.step-icon-wrap {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-400);
  margin-bottom: 14px;
}
.step-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.step-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 14px;
}
.step-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-500);
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 4px 12px;
  border-radius: 20px;
}

/* ── EARNINGS GRID ───────────────────────────── */
.earnings-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.earning-card {
  background: linear-gradient(145deg, #110A22, #180F30);
  border: 1px solid rgba(180,157,224,0.12);
  border-radius: 22px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}
.earning-card:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-6px);
  box-shadow: 0 0 40px rgba(201,168,76,0.15), 0 12px 40px rgba(0,0,0,0.4);
}
.earning-card--featured {
  border-color: rgba(201,168,76,0.5);
  background: linear-gradient(145deg, #1A1030, #251840);
  box-shadow: 0 0 40px rgba(201,168,76,0.2), 0 8px 32px rgba(0,0,0,0.5);
}
.earning-card--featured::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(245,208,106,0.06), transparent);
  background-size: 300% 100%;
  animation: shimmer 5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.earning-card-glow {
  position: absolute;
  top: -60px; right: -60px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.earning-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-400);
  margin-bottom: 16px;
}
.earning-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--purple-900);
  background: linear-gradient(135deg,#C9A84C,#F5D06A);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.earning-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.earning-amount {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  background: linear-gradient(135deg,#C9A84C,#F5D06A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  line-height: 1;
}
.earning-amount span {
  font-size: 0.9rem;
  -webkit-text-fill-color: var(--text-muted);
}
.earning-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}
.earning-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-400);
  transition: gap 0.2s;
}
.earning-link:hover { gap: 10px; }
.earning-example {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 0.82rem;
  color: var(--text-secondary);
}
.example-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-600);
  display: block;
  margin-bottom: 4px;
}
.earning-example strong { color: var(--gold-400); }

@media (max-width: 680px) {
  .earnings-grid { grid-template-columns: 1fr; }
}

/* ── SALARY TABLE ────────────────────────────── */
.salary-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 28px;
  line-height: 1.6;
}
.salary-note svg { flex-shrink: 0; color: var(--gold-500); margin-top: 2px; }
.salary-note strong { color: var(--gold-400); }

.salary-table {
  background: linear-gradient(145deg, #110A22, #180F30);
  border: 1px solid rgba(180,157,224,0.12);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 32px;
}
.salary-table-head {
  display: grid;
  grid-template-columns: 90px 1fr 140px 140px;
  padding: 14px 24px;
  background: rgba(201,168,76,0.07);
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.st-cell {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-600);
}
.salary-row {
  display: grid;
  grid-template-columns: 90px 1fr 140px 140px;
  padding: 14px 24px;
  border-bottom: 1px solid rgba(180,157,224,0.07);
  align-items: center;
  transition: background 0.2s;
}
.salary-row:last-child { border-bottom: none; }
.salary-row:hover { background: rgba(201,168,76,0.04); }
.salary-row.top-tier {
  background: linear-gradient(90deg, rgba(201,168,76,0.08) 0%, transparent 80%);
}
.sr-level {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-400);
}
.sr-members {
  font-size: 0.9rem;
  color: var(--text-primary);
}
.sr-members small {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
}
.sr-salary {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  background: linear-gradient(135deg,#C9A84C,#F5D06A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sr-monthly {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--text-secondary);
}

@media (max-width: 640px) {
  .salary-table-head, .salary-row { grid-template-columns: 70px 1fr 110px; }
  .st-cell:last-child, .salary-row > *:last-child { display: none; }
}

/* Salary conditions */
.salary-conditions {
  background: linear-gradient(145deg, #110A22, #180F30);
  border: 1px solid rgba(180,157,224,0.12);
  border-radius: 20px;
  padding: 28px;
}
.cond-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold-400);
  margin-bottom: 20px;
}
.cond-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.cond-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.cond-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(201,168,76,0.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-400);
  flex-shrink: 0;
  margin-top: 1px;
}
@media (max-width: 640px) {
  .cond-grid { grid-template-columns: 1fr; }
}

/* ── ACTIVITIES GRID ─────────────────────────── */
.activities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.activity-card {
  background: linear-gradient(145deg, #110A22, #180F30);
  border: 1px solid rgba(180,157,224,0.12);
  border-radius: 20px;
  padding: 28px 24px;
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}
.activity-card:hover {
  border-color: rgba(201,168,76,0.25);
  transform: translateY(-6px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.activity-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.activity-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: white;
}
.activity-icon--green  { background: rgba(37,211,102,0.15); color: #25D366; border: 1px solid rgba(37,211,102,0.3); }
.activity-icon--gold   { background: rgba(201,168,76,0.12); color: var(--gold-400); border: 1px solid rgba(201,168,76,0.3); }
.activity-icon--blue   { background: rgba(42,171,238,0.12); color: #2AABEE; border: 1px solid rgba(42,171,238,0.3); }
.activity-icon--purple { background: rgba(138,43,226,0.12); color: #A855F7; border: 1px solid rgba(138,43,226,0.3); }
.activity-icon--orange { background: rgba(251,146,60,0.12); color: #FB923C; border: 1px solid rgba(251,146,60,0.3); }
.activity-icon--red    { background: rgba(239,68,68,0.12);  color: #EF4444; border: 1px solid rgba(239,68,68,0.3); }

.activity-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
}
.activity-tag--daily   { background: rgba(37,211,102,0.12);  color: #25D366;  border: 1px solid rgba(37,211,102,0.3); }
.activity-tag--monthly { background: rgba(201,168,76,0.12);  color: var(--gold-400); border: 1px solid rgba(201,168,76,0.3); }
.activity-tag--passive { background: rgba(42,171,238,0.12);  color: #2AABEE;  border: 1px solid rgba(42,171,238,0.3); }
.activity-tag--special { background: rgba(239,68,68,0.12);   color: #EF4444;  border: 1px solid rgba(239,68,68,0.3); }

.activity-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.activity-desc {
  font-size: 0.87rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}
.activity-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-400);
  transition: gap 0.2s;
}
.activity-cta:hover { gap: 10px; }
.activity-example {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: 10px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ae-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-secondary);
}
.ae-row strong { color: var(--gold-400); }
.rebate-levels {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.rl-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  padding: 8px 12px;
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
  border: 1px solid rgba(180,157,224,0.08);
}
.rl-item span { color: var(--text-muted); font-size: 0.75rem; }
.rl-item strong { color: var(--text-primary); }
.level-progress { margin-top: 4px; }
.lp-track {
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 8px;
}
.lp-fill {
  height: 100%;
  background: linear-gradient(90deg,#C9A84C,#F5D06A);
  border-radius: 3px;
}
.lp-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .activities-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .activities-grid { grid-template-columns: 1fr; }
}

/* ── AGENT LEVELS ────────────────────────────── */
.levels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.level-card {
  background: linear-gradient(145deg, #110A22, #180F30);
  border: 1px solid rgba(180,157,224,0.1);
  border-radius: 16px;
  padding: 22px 20px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  position: relative;
  overflow: hidden;
}
.level-card:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-5px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.4);
}
.level-card.level-top {
  border-color: rgba(201,168,76,0.4);
  background: linear-gradient(145deg,#1A1030,#251840);
}
.level-badge {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple-900);
  background: linear-gradient(135deg,#C9A84C,#F5D06A);
  padding: 3px 10px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 10px;
}
.level-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg,#C9A84C,#F5D06A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}
.level-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.level-req {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 720px) {
  .levels-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 420px) {
  .levels-grid { grid-template-columns: 1fr; }
}

/* ── CHANNELS ────────────────────────────────── */
.channels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.channel-card {
  background: linear-gradient(145deg, #110A22, #180F30);
  border: 1px solid rgba(180,157,224,0.1);
  border-radius: 18px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}
.channel-card:hover {
  border-color: rgba(201,168,76,0.25);
  transform: translateY(-5px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.4);
}
.channel-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.channel-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
}
.channel-desc {
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.65;
  flex: 1;
}
.channel-tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-500);
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 3px 10px;
  border-radius: 20px;
  align-self: flex-start;
}

@media (max-width: 860px) {
  .channels-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .channels-grid { grid-template-columns: 1fr; }
}

/* ── FAQ ─────────────────────────────────────── */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: linear-gradient(145deg, #110A22, #180F30);
  border: 1px solid rgba(180,157,224,0.1);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item.open { border-color: rgba(201,168,76,0.3); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  gap: 16px;
  user-select: none;
}
.faq-q-text {
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--text-primary);
  line-height: 1.4;
}
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-400);
  flex-shrink: 0;
  transition: transform 0.3s, background 0.3s;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: rgba(201,168,76,0.2);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.75;
  border-top: 1px solid rgba(180,157,224,0.08);
  padding-top: 16px;
}

/* ── CTA SECTION ─────────────────────────────── */
.cta-section {
  padding: 20px 0;
  position: relative;
  overflow: hidden;
  z-index: 2;
  text-align: center;
}
.cta-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.09) 0%, transparent 65%);
}
.cta-card {
  background: linear-gradient(145deg, #110A22, #180F30);
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 32px;
  padding: 72px 48px;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 0 40px rgba(201,168,76,0.2), 0 20px 60px rgba(0,0,0,0.5);
  overflow: hidden;
}
.cta-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(245,208,106,0.05), transparent);
  background-size: 300% 100%;
  animation: shimmer 6s ease-in-out infinite;
  pointer-events: none;
}
.cta-icon {
  width: 68px; height: 68px;
  margin: 0 auto 24px;
  background: rgba(201,168,76,0.1);
  border: 1.5px solid rgba(201,168,76,0.5);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-300);
  box-shadow: 0 0 30px rgba(201,168,76,0.2);
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 14px;
}
.cta-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 460px;
  margin: 0 auto 36px;
  line-height: 1.75;
}
.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.cta-socials {
  display: flex;
  gap: 10px;
  justify-content: center;
}
.cta-social-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 20px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.34,1.56,0.64,1);
}
.cta-social-btn:hover { transform: translateY(-3px) scale(1.04); filter: brightness(1.1); }
.cta-social-btn.telegram { background: #2AABEE; box-shadow: 0 4px 16px rgba(42,171,238,0.35); }
.cta-social-btn.whatsapp { background: #25D366; box-shadow: 0 4px 16px rgba(37,211,102,0.35); }

@media (max-width: 600px) {
  .cta-card { padding: 48px 24px; }
}

/* ── FOOTER ──────────────────────────────────── */
.footer {
  padding: 36px 0;
  border-top: 1px solid rgba(180,157,224,0.1);
  position: relative; z-index: 2;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1rem;
  background: linear-gradient(135deg,#C9A84C,#F5D06A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-copy { font-size: 0.78rem; color: var(--text-muted); }
.footer-link {
  font-size: 0.8rem;
  color: var(--gold-500);
  font-weight: 600;
  transition: color 0.2s;
}
.footer-link:hover { color: var(--gold-300); }

/* ── FLOAT BUTTONS ───────────────────────────── */
.float-actions {
  position: fixed;
  bottom: 28px; right: 20px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 10px;
}



.float-btn {
  width: 50px; height: 50px;
  border-radius: 50%;
  border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: #fff;
  transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
  box-shadow: 0 4px 16px rgba(0,0,0,0.5);
  text-decoration: none;
}
.float-support {
    background: var(--grad-gold);
    color: var(--purple-900);
}
.float-btn:hover { transform: scale(1.14); box-shadow: 0 8px 28px rgba(0,0,0,0.5); }
.float-telegram { background: #2AABEE; }
.float-telegram:hover { background: #1E96D4; }
.float-whatsapp { background: #25D366; }
.float-whatsapp:hover { background: #1DB954; }

/* ═══════════════════════════════════════════════
   NEW SECTIONS — App Showcase, Stats, Tables
   ═══════════════════════════════════════════════ */

/* ── Who We Are Layout ───────────────────────── */
.who-we-are-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 20px 0;
}

.wwa-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.wwa-text .section-eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
}

.wwa-text .section-title {
  margin-bottom: 20px;
}

.wwa-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.wwa-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

/* ── Fan Stage ───────────────────────────────── */
.wwa-fan {
  display: flex;
  justify-content: center;
  align-items: center;
}

.fan-stage {
  position: relative;
  width: 320px;
  height: 520px;
  /* origin at bottom-center of the fan */
}

/* Each card: absolute, same size, rotated from bottom-center */
.fan-card {
  position: absolute;
  width: 180px;
  height: 360px;
  border-radius: 20px;
  transform-origin: bottom center;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.4s, z-index 0s;
  cursor: default;
}

.fan-card:hover {
  z-index: 10 !important;
}

.fan-card-inner {
  width: 100%;
  height: 100%;
  border-radius: 29px;
  overflow: hidden;

  box-shadow: 0 -6px 40px rgb(111 0 255 / 18%), 0 0 0 1px rgba(201, 168, 76, 0.12);
}

.fan-card-inner img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.app-screen-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--gold-600);
}

.app-screen-placeholder span {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Fan card positions — spread from bottom-center */
/* Card 1: far left, tilted hard left */
.fan-card-1 {
  bottom: 0;
  left: 0px;
  z-index: 1;
  transform: rotate(-28deg) translateX(-20px);
}
.fan-card-1:hover { transform: rotate(-28deg) translateX(-20px) translateY(-24px) scale(1.04); box-shadow: 0 20px 60px rgba(201,168,76,0.25); }

/* Card 2: left-center, mild tilt left */
.fan-card-2 {
  bottom: 0;
  left: 40px;
  z-index: 2;
  transform: rotate(-10deg) translateX(10px);
}
.fan-card-2:hover { transform: rotate(-10deg) translateX(10px) translateY(-24px) scale(1.04); box-shadow: 0 20px 60px rgba(201,168,76,0.25); }

/* Card 3: right-center, mild tilt right */
.fan-card-3 {
  bottom: 0;
  left: 80px;
  z-index: 3;
  transform: rotate(8deg) translateX(20px);
}
.fan-card-3:hover { transform: rotate(8deg) translateX(20px) translateY(-24px) scale(1.04); box-shadow: 0 20px 60px rgba(201,168,76,0.25); }

/* Card 4: far right, tilted hard right */
.fan-card-4 {
  bottom: 0;
  left: 120px;
  z-index: 4;
  transform: rotate(24deg) translateX(30px);
  border-color: rgba(201,168,76,0.5);
  box-shadow: 0 16px 48px rgba(201,168,76,0.2);
}
.fan-card-4:hover { transform: rotate(24deg) translateX(30px) translateY(-24px) scale(1.04); box-shadow: 0 20px 60px rgba(201,168,76,0.35); }

@media (max-width: 960px) {
  .who-we-are-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .wwa-fan { order: -1; }
  .fan-stage { width: 280px; height: 460px; }
  .fan-card { width: 160px; height: 320px; }
  .fan-card-1 { left: 0; }
  .fan-card-2 { left: 30px; }
  .fan-card-3 { left: 60px; }
  .fan-card-4 { left: 90px; }
}

@media (max-width: 480px) {
  .fan-stage { width: 240px; height: 240px; }
  .fan-card { width: 140px; height: 280px; border-radius: 16px; }
  .fan-card-1 { left: 0; transform: rotate(-25deg); }
  .fan-card-2 { left: 22px; transform: rotate(-8deg); }
  .fan-card-3 { left: 44px; transform: rotate(7deg) translateX(16px); }
  .fan-card-4 { left: 66px; transform: rotate(22deg) translateX(24px); }
}

/* ── Stats Section ───────────────────────────── */
.stats-counters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.stat-counter {
  background: var(--grad-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 28px 20px;
  text-align: center;
  transition: all 0.3s var(--ease-smooth);
}

.stat-counter:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.stat-counter-value {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 8px;
}

.stat-counter-label {
  font-size: 0.8rem;
  color: #ff7ddd;
  line-height: 1.4;
}

@media (max-width: 700px) {
  .stats-counters { grid-template-columns: repeat(2, 1fr); }
}

.stats-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stats-split-card {
  background: var(--grad-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 28px;
}

.stats-split-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold-400);
  margin-bottom: 20px;
}

.agent-type-bar { display: flex; flex-direction: column; gap: 14px; }

.atb-item { display: flex; flex-direction: column; gap: 6px; }

.atb-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.atb-label strong { color: var(--gold-400); }

.atb-track {
  height: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: 3px;
  overflow: hidden;
}

.atb-fill {
  height: 100%;
  background: var(--grad-gold);
  border-radius: 3px;
  transition: width 1.2s cubic-bezier(0.4,0,0.2,1);
}
.atb-fill--dim   { background: linear-gradient(90deg, var(--gold-600), var(--gold-500)); }
.atb-fill--muted { background: linear-gradient(90deg, var(--purple-500), var(--purple-400)); }

.income-sources-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.income-source-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-secondary);
  padding: 8px 10px;
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
  border: 1px solid var(--border-subtle);
}

.income-source-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--grad-gold);
}

@media (max-width: 640px) {
  .stats-split { grid-template-columns: 1fr; }
  .income-sources-grid { grid-template-columns: 1fr; }
}

/* ── Bonus Tables ────────────────────────────── */
.bonus-table-wrap {
  margin-bottom: 20px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: var(--grad-card);
}

.bonus-table {}

.bonus-table-head {
  display: grid;
  padding: 13px 22px;
  background: rgba(201,168,76,0.07);
  border-bottom: 1px solid var(--border-gold);
}

.bt-cell {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-600);
}

.bonus-table-row {
  display: grid;
  padding: 13px 22px;
  border-bottom: 1px solid var(--border-subtle);
  align-items: center;
  transition: background 0.2s;
}

.bonus-table-row:last-child { border-bottom: none; }
.bonus-table-row:hover { background: rgba(201,168,76,0.04); }
.bonus-table-row.highlight { background: linear-gradient(90deg, rgba(201,168,76,0.08) 0%, transparent 80%); }

.bt-val { font-size: 0.88rem; color: var(--text-primary); }
.bt-amount {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bonus-rules {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 4px;
}

.bonus-rule-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.6;
  padding: 10px 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
}

.bonus-rule-item::before {
  content: '•';
  color: var(--gold-500);
  flex-shrink: 0;
  margin-top: 1px;
}

@media (max-width: 600px) {
  .bonus-rules { grid-template-columns: 1fr; }
}

/* Column widths per table */
#invite-bonus-body .bonus-table-row,
.bonus-table-head:has(+ div#invite-bonus-body) {
  grid-template-columns: 1fr 1.5fr 1fr;
}
.bonus-table[data-table="invite"] .bonus-table-head,
.bonus-table[data-table="invite"] .bonus-table-row { grid-template-columns: 1fr 1.5fr 1fr; }
.bonus-table[data-table="weekly"] .bonus-table-head,
.bonus-table[data-table="weekly"] .bonus-table-row { grid-template-columns: 1.5fr 1fr 1fr; }
.bonus-table[data-table="skip"] .bonus-table-head,
.bonus-table[data-table="skip"] .bonus-table-row   { grid-template-columns: 1fr 1fr 1fr 1fr; }
.bonus-table[data-table="recharge"] .bonus-table-head,
.bonus-table[data-table="recharge"] .bonus-table-row { grid-template-columns: 1fr 1fr; }

/* ── Rebate Grid Table ───────────────────────── */
.rebate-highlight {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(201,168,76,0.07);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 28px;
  line-height: 1.6;
}
.rebate-highlight svg { flex-shrink: 0; color: var(--gold-400); margin-top: 2px; }
.rebate-highlight strong { color: var(--gold-300); }

.rebate-grid-wrap {
  overflow-x: auto;
  border-radius: 20px;
  border: 1px solid var(--border-subtle);
  background: var(--grad-card);
}

.rebate-grid-table {
  min-width: 600px;
}

.rgt-head {
  display: grid;
  grid-template-columns: 80px repeat(6, 1fr);
  padding: 12px 20px;
  background: rgba(201,168,76,0.07);
  border-bottom: 1px solid var(--border-gold);
}

.rgt-head-cell {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-600);
  text-align: center;
}
.rgt-head-cell:first-child { text-align: left; }

.rgt-row {
  display: grid;
  grid-template-columns: 80px repeat(6, 1fr);
  padding: 11px 20px;
  border-bottom: 1px solid var(--border-subtle);
  align-items: center;
  transition: background 0.2s;
}
.rgt-row:last-child { border-bottom: none; }
.rgt-row:hover { background: rgba(201,168,76,0.04); }
.rgt-row.top-level { background: linear-gradient(90deg, rgba(201,168,76,0.08), transparent); }

.rgt-level {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-400);
}

.rgt-val {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--text-secondary);
  text-align: center;
}

.rgt-val.tier1 { color: var(--gold-400); font-weight: 600; }

/* ── Recharge Tabs ───────────────────────────── */
.recharge-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.rc-tab {
  padding: 8px 22px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  border: 1.5px solid var(--border-subtle);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.25s var(--ease-smooth);
}

.rc-tab:hover { color: var(--text-secondary); border-color: var(--border-gold); }

.rc-tab.active {
  background: var(--grad-gold);
  color: var(--purple-900);
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(201,168,76,0.3);
}

/* ── Globe Visual ────────────────────────────── */
.globe-wrap {
  position: relative;
  width: 100%;
  height: 320px;
  margin: 8px 0 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--border-gold);
  box-shadow: 0 0 60px rgba(201,168,76,0.08), 0 8px 40px rgba(0,0,0,0.5);
  background: #07030F;
}

.globe-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 150%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Gradient fades: fade top to blend with page, fade left/right for labels */
.globe-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(7,3,15,0.55) 0%, transparent 35%, transparent 65%, rgba(7,3,15,0.7) 100%),
    linear-gradient(to right, rgba(7,3,15,0.65) 0%, transparent 22%, transparent 78%, rgba(7,3,15,0.65) 100%);
  z-index: 1;
}

.globe-label-left,
.globe-label-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-300);
  letter-spacing: 0.05em;
  z-index: 3;
  background: rgba(7,3,15,0.75);
  border: 1px solid rgba(201,168,76,0.35);
  padding: 7px 16px;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.globe-label-left  { left: 24px; }
.globe-label-right { right: 24px; }

/* Center badge */
.globe-center-badge {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  text-align: center;
  background: rgba(7,3,15,0.75);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 8px 24px;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  gap: 2px;
  white-space: nowrap;
}

.gcb-value {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.gcb-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

.globe-pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold-400);
  box-shadow: 0 0 0 0 rgba(201,168,76,0.5);
  animation: globePulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes globePulse {
  0%   { box-shadow: 0 0 0 0 rgba(201,168,76,0.5); }
  70%  { box-shadow: 0 0 0 8px rgba(201,168,76,0); }
  100% { box-shadow: 0 0 0 0 rgba(201,168,76,0); }
}

@media (max-width: 680px) {
  .globe-wrap { height: 240px; }
  .globe-label-left, .globe-label-right { font-size: 0.72rem; padding: 6px 12px; }
  .globe-center-badge { display: none; }
}

/* ── Extra scroll offset for mobile toggle bar ── */
@media (max-width: 1020px) {
  html { scroll-padding-top: 115px; }
  .hero { padding-top: 165px; }
}


/* ── FOLLOW US SECTION ───────────────────────── */
.follow-section {
  padding: 80px 0;
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, var(--bg-base) 0%, var(--purple-900) 50%, var(--bg-base) 100%);
}

.follow-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.follow-text {
  text-align: center;
  max-width: 520px;
}

.follow-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.15;
}

/* gold-text utility — works on both pages */
.gold-text {
  background: linear-gradient(135deg, #C9A84C 0%, #F5D06A 45%, #E0B84A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.follow-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

.follow-channels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  width: 100%;
  max-width: 900px;
}

.follow-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 28px 16px 22px;
  background: linear-gradient(145deg, #110A22, #180F30);
  border: 1px solid rgba(180, 157, 224, 0.12);
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.follow-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.03);
  opacity: 0;
  transition: opacity 0.3s;
}

.follow-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 168, 76, 0.35);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(201,168,76,0.1);
}

.follow-card:hover::before { opacity: 1; }

.follow-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.follow-card:hover .follow-icon-wrap {
  transform: scale(1.1);
}

.follow-info {
  text-align: center;
  flex: 1;
}

.follow-platform {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.follow-handle {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

.follow-arrow {
  font-size: 0.85rem;
  color: var(--gold-500);
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.25s;
}

.follow-card:hover .follow-arrow {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 760px) {
  .follow-channels {
    grid-template-columns: repeat(2, 1fr);
    max-width: 480px;
  }
}

@media (max-width: 400px) {
  .follow-channels { grid-template-columns: 1fr 1fr; gap: 12px; }
  .follow-icon-wrap { width: 50px; height: 50px; border-radius: 14px; }
  .follow-card { padding: 22px 12px 18px; }
}