/* ======================
   RESET
====================== */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  scroll-behavior:smooth;
}

:root{
  --bg:#050816;
  --card:rgba(255,255,255,0.06);
  --line:rgba(255,255,255,0.08);
  --blue:#2b7fff;
  --blue2:#62c4ff;
  --text:#dbeafe;
  --white:#ffffff;
  --shadow:0 0 25px rgba(43,127,255,.25);
}

/* ======================
   BODY (PHONE FIRST)
====================== */
body{
  font-family:Arial, sans-serif;
  background:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(135deg,#020617,#07162c,#050816);
  background-size:32px 32px,32px 32px,cover;
  color:var(--white);
  min-height:100vh;
  overflow-x:hidden;
  position:relative;
  opacity:0;
  transition:opacity .8s ease;
}

/* ======================
   SCROLLBAR
====================== */
::-webkit-scrollbar{
  width:6px;
}
::-webkit-scrollbar-thumb{
  background:var(--blue);
  border-radius:20px;
}
::-webkit-scrollbar-track{
  background:#020617;
}

/* ======================
   GLOW BG
====================== */
.bg-circle{
  position:fixed;
  width:180px;
  height:180px;
  border-radius:50%;
  filter:blur(90px);
  opacity:.22;
  z-index:0;
  animation:float 8s ease-in-out infinite;
}

.left{
  top:40px;
  left:-60px;
  background:#2b7fff;
}

.right{
  bottom:90px;
  right:-60px;
  background:#00a6ff;
  animation-delay:2s;
}

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

/* ======================
   WRAPPER
====================== */
.wrapper{
  position:relative;
  z-index:2;
  width:100%;
  max-width:430px;
  margin:auto;
  padding:18px 16px 110px;
}

/* ======================
   HERO
====================== */
.hero{
  background:var(--card);
  border:1px solid var(--line);
  backdrop-filter:blur(12px);
  border-radius:28px;
  padding:26px 18px;
  text-align:center;
  box-shadow:var(--shadow);
}

/* LOGO */
.logo-box{
  display:flex;
  justify-content:center;
}

.logo{
  width:140px;
  height:140px;
  border-radius:50%;
  object-fit:cover;
  border:4px solid var(--blue);
  box-shadow:
    0 0 20px var(--blue),
    0 0 45px rgba(43,127,255,.35);
  animation:ringPulse 3s infinite;
}

@keyframes ringPulse{
  0%,100%{
    box-shadow:
      0 0 20px var(--blue),
      0 0 40px rgba(43,127,255,.25);
  }
  50%{
    box-shadow:
      0 0 28px var(--blue),
      0 0 55px rgba(43,127,255,.4);
  }
}

/* ======================
   TEXT
====================== */
.top-badge,
.mini-badge{
  display:inline-block;
  padding:8px 14px;
  border-radius:30px;
  background:rgba(43,127,255,.12);
  border:1px solid rgba(43,127,255,.28);
  color:var(--blue2);
  font-size:11px;
  letter-spacing:1px;
  margin-bottom:16px;
}

.hero h1{
  font-size:34px;
  line-height:1.15;
  font-weight:800;
  margin-top:16px;
}

.hero h1 span{
  background:linear-gradient(
    90deg,
    #ffffff,
    #8fd0ff,
    #2b7fff
  );
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.hero-text{
  margin-top:12px;
  font-size:14px;
  line-height:1.7;
  color:var(--text);
}

/* ======================
   TRUST CHIPS
====================== */
.trust-chips{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:10px;
  margin-top:18px;
}

.trust-chips span{
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  padding:9px 12px;
  border-radius:24px;
  font-size:12px;
  color:var(--text);
}

/* ======================
   BUTTONS
====================== */
.hero-buttons{
  display:flex;
  flex-direction:column;
  gap:12px;
  margin-top:22px;
}

.primary-btn,
.secondary-btn,
.join-now,
.cta-btn{
  width:100%;
  display:flex;
  justify-content:center;
  align-items:center;
  padding:15px 18px;
  border-radius:40px;
  text-decoration:none;
  font-weight:700;
  font-size:14px;
  position:relative;
  overflow:hidden;
}

.primary-btn,
.join-now,
.cta-btn{
  background:linear-gradient(
    90deg,
    #2b7fff,
    #2ca8ff
  );
  color:white;
  box-shadow:0 0 20px rgba(43,127,255,.35);
}

.secondary-btn{
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.03);
  color:white;
}

/* Ripple */
.ripple{
  position:absolute;
  width:10px;
  height:10px;
  border-radius:50%;
  background:rgba(255,255,255,.6);
  transform:translate(-50%,-50%);
  animation:ripple .6s linear;
  pointer-events:none;
}

@keyframes ripple{
  from{
    width:0;
    height:0;
    opacity:.7;
  }
  to{
    width:200px;
    height:200px;
    opacity:0;
  }
}

/* ======================
   STATS
====================== */
.stats{
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
  margin-top:22px;
}

.stat-box{
  background:var(--card);
  border:1px solid var(--line);
  padding:20px;
  border-radius:20px;
  text-align:center;
  box-shadow:0 0 12px rgba(0,0,0,.2);
}

.stat-box h2{
  color:var(--blue2);
  font-size:28px;
}

.stat-box p{
  margin-top:6px;
  font-size:13px;
  color:var(--text);
}

/* ======================
   SOCIAL PROOF
====================== */
.social-proof{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:center;
  margin-top:24px;
}

.proof-item{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  padding:10px 14px;
  border-radius:24px;
  font-size:12px;
  color:var(--text);
}

/* ======================
   FEATURES
====================== */
.features{
  margin-top:28px;
}

.section-title{
  text-align:center;
  margin-bottom:18px;
}

.section-title span{
  color:var(--blue2);
  font-size:12px;
}

.section-title h2{
  font-size:28px;
  margin-top:8px;
}

.section-title p{
  margin-top:8px;
  color:var(--text);
  font-size:13px;
  line-height:1.6;
}

.feature-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:16px;
}

.feature-card{
  background:var(--card);
  border:1px solid var(--line);
  padding:22px 18px;
  border-radius:22px;
  box-shadow:0 0 14px rgba(0,0,0,.18);
}

.icon{
  font-size:30px;
  margin-bottom:10px;
}

.feature-card h3{
  font-size:18px;
  color:var(--blue2);
  margin-bottom:8px;
}

.feature-card p{
  color:var(--text);
  font-size:13px;
  line-height:1.6;
}

/* ======================
   TRUST
====================== */
.trust{
  margin-top:30px;
}

.trust-box,
.final-cta{
  background:linear-gradient(
    135deg,
    rgba(43,127,255,.12),
    rgba(255,255,255,.03)
  );
  border:1px solid rgba(43,127,255,.22);
  border-radius:24px;
  padding:26px 18px;
  text-align:center;
  box-shadow:var(--shadow);
}

.trust-box h2,
.final-cta h2{
  font-size:24px;
}

.trust-box p,
.final-cta p{
  margin:14px 0 18px;
  font-size:13px;
  color:var(--text);
  line-height:1.7;
}

.final-cta{
  margin-top:24px;
}

/* ======================
   FOOTER
====================== */
.footer{
  text-align:center;
  margin-top:26px;
  color:#94a3b8;
  font-size:12px;
}

/* ======================
   STICKY CTA
====================== */
.sticky-cta{
  position:fixed;
  left:0;
  bottom:0;
  width:100%;
  padding:12px 14px;
  background:rgba(5,8,22,.95);
  backdrop-filter:blur(12px);
  border-top:1px solid rgba(255,255,255,.08);
  z-index:999;
}

.sticky-cta a{
  width:100%;
  display:flex;
  justify-content:center;
  align-items:center;
  padding:15px;
  border-radius:40px;
  background:linear-gradient(
    90deg,
    #2b7fff,
    #2ca8ff
  );
  color:white;
  text-decoration:none;
  font-weight:700;
  box-shadow:0 0 20px rgba(43,127,255,.35);
}