* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: radial-gradient(1200px 800px at 50% -10%, #0e1a36 0%, #0a0f1f 45%, #05070d 100%);
  min-height: 100vh;
  color: #e9f2ff;
  overflow-x: hidden;
}

.bg-orb { position: fixed; border-radius: 50%; filter: blur(80px); opacity: 0.55; pointer-events: none; z-index: 0; animation: floatAnim 18s ease-in-out infinite; }
.orb-1 { width: 520px; height: 520px; background: radial-gradient(circle, #2AABEE, transparent 60%); top: -120px; left: -120px; }
.orb-2 { width: 460px; height: 460px; background: radial-gradient(circle, #f5b042, transparent 60%); bottom: -140px; right: -100px; animation-delay: -6s; }
.orb-3 { width: 380px; height: 380px; background: radial-gradient(circle, #ffd966, transparent 60%); top: 40%; left: 55%; animation-delay: -12s; }
@keyframes floatAnim { 0%,100%{transform:translate(0,0) scale(1);} 50%{transform:translate(40px,-30px) scale(1.08);} }

.grid-overlay {
  position: fixed; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 42px 42px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, #000 30%, transparent 75%);
  mask-image: radial-gradient(ellipse at 50% 30%, #000 30%, transparent 75%);
  pointer-events: none; z-index: 0;
}

.particles { position: fixed; inset: 0; pointer-events: none; z-index: 0; }
.particles span {
  position: absolute;
  left: calc((var(--i) * 4.2%) + 2%);
  bottom: -20px; width: 6px; height: 6px; border-radius: 50%;
  background: linear-gradient(180deg, #ffd966, #f5b042);
  box-shadow: 0 0 12px rgba(245,176,66,0.7);
  opacity: 0.55;
  animation: riseAnim calc(14s + (var(--i) * 0.6s)) linear infinite;
  animation-delay: calc(var(--i) * -0.7s);
}
@keyframes riseAnim { 0%{transform:translateY(0) translateX(0); opacity:0;} 10%{opacity:0.7;} 100%{transform:translateY(-110vh) translateX(20px); opacity:0;} }

.container { position: relative; z-index: 2; max-width: 1120px; margin: 0 auto; padding: clamp(20px,4vw,48px) clamp(16px,4vw,32px) 60px; }

.hero { text-align: center; padding: clamp(40px,7vw,72px) 0 24px; }
.badge-row { display: flex; gap: 10px; justify-content: center; margin-bottom: 28px; flex-wrap: wrap; }
.badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 999px; background: rgba(255,255,255,0.06); backdrop-filter: blur(14px); border: 1px solid rgba(255,255,255,0.12); font-size: 13px; }
.badge i { color: #f5b042; }

.logo-wrapper { position: relative; width: 148px; height: 148px; margin: 0 auto 24px; }
.logo-ring { position: absolute; inset: -10px; border-radius: 50%; background: conic-gradient(from 0deg, #f5b042, #ffd966, #2AABEE, #f5b042); filter: blur(14px); opacity: 0.7; animation: spinAnim 6s linear infinite; }
@keyframes spinAnim { to { transform: rotate(360deg); } }
.logo { position: relative; width: 100%; height: 100%; border-radius: 50%; background: radial-gradient(circle at 30% 25%, #ffd966, #f5b042 60%, #c97e00); display: flex; align-items: center; justify-content: center; overflow: hidden; box-shadow: 0 20px 60px -10px rgba(245,176,66,0.6); border: 2px solid rgba(255,255,255,0.18); }
.live-dot { position: absolute; bottom: 8px; right: 8px; width: 22px; height: 22px; border-radius: 50%; background: #22c55e; border: 3px solid #05070d; animation: pingAnim 1.8s ease-out infinite; }
@keyframes pingAnim { 0%{box-shadow:0 0 0 0 rgba(34,197,94,0.7);} 80%,100%{box-shadow:0 0 0 14px rgba(34,197,94,0);} }

h1 { font-size: clamp(36px,6vw,60px); font-weight: 800; letter-spacing: -0.02em; background: linear-gradient(180deg, #fff 30%, #ffd966); -webkit-background-clip: text; background-clip: text; color: transparent; margin-bottom: 14px; }
.subtitle { max-width: 620px; margin: 0 auto 26px; color: rgba(233,242,255,0.65); font-size: clamp(15px,2.2vw,17px); line-height: 1.6; }
.member-pill { display: inline-flex; align-items: center; gap: 10px; padding: 10px 18px; border-radius: 999px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); backdrop-filter: blur(14px); font-size: 14px; margin-bottom: 28px; }
.pulse { width: 10px; height: 10px; border-radius: 50%; background: #22c55e; animation: pingAnim 1.8s ease-out infinite; }
.member-count { font-weight: 700; color: #fff; }
.member-label { color: rgba(233,242,255,0.65); }

.cta { position: relative; display: inline-flex; align-items: center; gap: 12px; background: linear-gradient(135deg, #06c90a 0%, #12e607 60%, #05e71f 100%); border: none; padding: 18px 28px; border-radius: 18px; font-size: clamp(15px,2.2vw,17px); font-weight: 700; color: #fff; cursor: pointer; transition: transform 0.2s ease, box-shadow 0.2s ease; box-shadow: 0 18px 50px -12px rgba(3, 183, 33, 0.7); margin-bottom: 18px; text-decoration: none; }
.cta:hover { transform: translateY(-2px); box-shadow: 0 24px 60px -10px rgba(24, 244, 39, 0.9); }
.countdown { display: inline-flex; align-items: center; gap: 8px; color: rgba(28, 244, 54, 0.65); font-size: 14px; margin-bottom: 30px; }
.countdown strong { color: #fff; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); padding: 4px 10px; border-radius: 8px; min-width: 42px; display: inline-block; }
.trust-links { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; font-size: 13.5px; color: rgba(233,242,255,0.65); }
.trust-links i { color: #f5b042; margin-right: 6px; }

section { padding: 64px 0; }
.section-header { text-align: center; margin-bottom: 36px; }
.eyebrow { display: inline-block; font-size: 12px; letter-spacing: 0.25em; text-transform: uppercase; color: #f5b042; margin-bottom: 10px; }
.section-header h2 { font-size: clamp(26px,4.2vw,40px); font-weight: 800; }
.gradient-text { background: linear-gradient(90deg, #f5b042, #ffd966); -webkit-background-clip: text; background-clip: text; color: transparent; }

.cards-grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.card { padding: 24px; border-radius: 20px; background: linear-gradient(180deg, rgba(255,255,255,0.1), rgba(255,255,255,0.06)); border: 1px solid rgba(255,255,255,0.12); backdrop-filter: blur(18px); transition: transform 0.25s ease; }
.card:hover { transform: translateY(-4px); }
.card-icon { width: 48px; height: 48px; border-radius: 14px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, rgba(245,176,66,0.25), rgba(255,217,102,0.2)); border: 1px solid rgba(245,176,66,0.35); color: #ffd966; font-size: 20px; }
.card h3 { margin: 14px 0 6px; font-size: 18px; }
.card p { color: rgba(233,242,255,0.65); font-size: 14.5px; line-height: 1.55; }

.stats-grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); margin-bottom: 30px; }
.stat-card { padding: 28px 22px; text-align: center; background: linear-gradient(180deg, rgba(255,255,255,0.1), rgba(255,255,255,0.06)); border: 1px solid rgba(255,255,255,0.12); border-radius: 20px; backdrop-filter: blur(18px); }
.stat-number { font-size: clamp(30px,4.5vw,42px); font-weight: 800; background: linear-gradient(180deg, #fff, #ffd966); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-label { margin-top: 6px; font-size: 14px; color: rgba(233,242,255,0.65); }
.stat-label i { color: #f5b042; margin-right: 6px; }

.growth-bar { max-width: 520px; margin: 0 auto; text-align: center; }
.bar-bg { height: 10px; border-radius: 999px; background: rgba(255,255,255,0.08); overflow: hidden; }
.bar-fill { display: block; height: 100%; width: 0; border-radius: 999px; background: linear-gradient(90deg, #f5b042, #ffd966); animation: growWidth 1.8s ease forwards; }
@keyframes growWidth { from { width: 0; } to { width: 94%; } }

.final-card { position: relative; padding: clamp(32px,5vw,52px); border-radius: 28px; text-align: center; background: linear-gradient(180deg, rgba(245,176,66,0.16), rgba(255,217,102,0.08)); border: 1px solid rgba(245,176,66,0.35); overflow: hidden; }
.cta-mega { font-size: clamp(16px,2.4vw,19px); padding: 20px 30px; border-radius: 22px; margin: 20px 0 0; }

footer { text-align: center; color: rgba(233,242,255,0.65); font-size: 13px; padding-top: 32px; }

@media (max-width: 520px) {
  .logo-wrapper { width: 124px; height: 124px; }
  .cta { width: 100%; justify-content: center; }
}