/* =========================================
   GLOBAL RESET
========================================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Poppins',sans-serif;
  overflow-x:hidden;
  background:#020617;
  color:#ffffff;
  min-height:100vh;
  position:relative;
}

/* =========================================
   BACKGROUND
========================================= */

body::before{
  content:"";
  position:fixed;
  inset:0;

  background:
  radial-gradient(
    circle at top right,
    rgba(0,212,255,.16),
    transparent 25%
  ),

  radial-gradient(
    circle at bottom left,
    rgba(0,200,150,.12),
    transparent 25%
  ),

  linear-gradient(
    180deg,
    #020617,
    #050b18,
    #081225
  );

  z-index:-3;
}

body::after{
  content:"";
  position:fixed;
  inset:0;

  background:
  linear-gradient(
    rgba(255,255,255,.02),
    rgba(255,255,255,.01)
  );

  backdrop-filter:blur(2px);

  z-index:-2;
}

/* =========================================
   LINKS
========================================= */

a{
  text-decoration:none !important;
  color:inherit;
}

/* =========================================
   LANDING SECTION
========================================= */

#landing{
  min-height:100vh;

  background:
  linear-gradient(
    rgba(2,6,23,.72),
    rgba(2,6,23,.82)
  ),

  url("/images/card2cashbackground.png")
  no-repeat center center;

  background-size:cover;
  background-position:center;

  position:relative;

  display:flex;
  align-items:center;
  justify-content:center;

  padding:80px 20px 120px;
}

/* =========================================
   OVERLAY
========================================= */

.overlay{
  position:absolute;
  inset:0;

  background:
  radial-gradient(
    circle at top,
    rgba(0,212,255,.14),
    transparent 35%
  );

  z-index:1;
}

/* =========================================
   HERO CONTENT
========================================= */

.hero-content{
  position:relative;
  z-index:5;

  width:100%;
  max-width:760px;

  text-align:center;

  padding:20px;
}

.hero-content h1{
  font-size:clamp(3rem,8vw,6rem);
  font-weight:800;
  line-height:1.05;

  margin-bottom:24px;

  background:
  linear-gradient(
    135deg,
    #ffffff,
    #c8f6ff,
    #00d4ff
  );

  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.hero-content p{
  font-size:clamp(1rem,2vw,1.25rem);
  line-height:1.8;

  color:#d8e7ff;

  max-width:680px;

  margin:0 auto 38px;

  opacity:.95;
}

/* =========================================
   CTA BUTTON
========================================= */

.cta-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  min-width:220px;

  padding:18px 38px;

  border-radius:999px;

  border:none;

  background:
  linear-gradient(
    135deg,
    #00c896,
    #00d4ff
  );

  color:#ffffff !important;

  font-size:1.05rem;
  font-weight:700;

  text-decoration:none !important;

  box-shadow:
  0 12px 40px rgba(0,212,255,.28);

  transition:
  transform .3s ease,
  box-shadow .3s ease,
  opacity .3s ease;

  cursor:pointer;
}

.cta-btn:hover{
  transform:
  translateY(-4px)
  scale(1.02);

  box-shadow:
  0 18px 48px rgba(0,212,255,.45);

  opacity:.98;
}

.cta-btn:active{
  transform:scale(.98);
}

/* =========================================
   TRUSTED BOX
========================================= */

.trusted-box{
  position:absolute;

  right:40px;
  top:50%;

  transform:translateY(-50%);

  width:300px;

  padding:24px;

  background:
  rgba(10,15,30,.82);

  backdrop-filter:blur(20px);

  border-radius:26px;

  border:
  1px solid rgba(255,255,255,.08);

  box-shadow:
  0 18px 50px rgba(0,0,0,.45);

  z-index:3;
}

.trusted-box h3{
  font-size:1.05rem;
  margin-bottom:18px;
  text-align:center;

  color:#ffffff;
}

.trusted-item{
  display:flex;
  justify-content:space-between;
  align-items:center;

  padding:12px 0;

  font-size:14px;

  border-bottom:
  1px solid rgba(255,255,255,.05);

  color:#cbd5e1;
}

.trusted-item:last-child{
  border-bottom:none;
}

/* =========================================
   CARD UI
========================================= */

.card{
  width:92%;
  max-width:420px;

  margin:40px auto;

  padding:28px;

  background:
  rgba(15,23,42,.9);

  border-radius:28px;

  border:
  1px solid rgba(255,255,255,.05);

  backdrop-filter:blur(18px);

  box-shadow:
  0 20px 50px rgba(0,0,0,.45);

  text-align:center;
}

.hidden{
  display:none !important;
}

/* =========================================
   INPUTS
========================================= */

input{
  width:100%;

  padding:16px;

  margin:10px 0;

  border:none;
  outline:none;

  border-radius:16px;

  background:
  rgba(255,255,255,.05);

  color:#ffffff;

  font-size:15px;

  transition:.3s ease;
}

input:focus{
  border:
  1px solid rgba(0,212,255,.6);

  box-shadow:
  0 0 0 4px rgba(0,212,255,.12);
}

/* =========================================
   GLOBAL BUTTON
========================================= */

button{
  border:none;
  outline:none;

  cursor:pointer;
}

/* =========================================
   LIVE POPUP
========================================= */

.live-popup{
  position:fixed;

  bottom:24px;
  right:24px;

  max-width:320px;

  background:
  rgba(10,15,30,.95);

  color:#ffffff;

  padding:16px 18px;

  border-radius:18px;

  border-left:
  4px solid #00d4ff;

  backdrop-filter:blur(18px);

  box-shadow:
  0 18px 40px rgba(0,0,0,.45);

  z-index:99999;

  opacity:0;

  transform:
  translateY(30px);

  transition:.4s ease;
}

.popup-content{
  display:flex;
  align-items:center;
  gap:12px;

  font-size:14px;
  line-height:1.5;
}

.popup-dot{
  width:10px;
  height:10px;

  border-radius:50%;

  background:#00ff95;

  animation:pulse 1.5s infinite;
}

.show-popup{
  opacity:1 !important;

  transform:
  translateY(0) !important;
}

@keyframes pulse{

  0%{
    transform:scale(1);
    opacity:1;
  }

  50%{
    transform:scale(1.4);
    opacity:.6;
  }

  100%{
    transform:scale(1);
    opacity:1;
  }

}

/* =========================================
   ONBOARDING
========================================= */

.onboarding{
  position:fixed;
  inset:0;

  background:
  rgba(0,0,0,.7);

  display:flex;
  align-items:center;
  justify-content:center;

  padding:20px;

  z-index:999999;
}

.onboarding-box{
  width:100%;
  max-width:420px;

  background:
  rgba(10,15,30,.96);

  border-radius:28px;

  padding:35px 28px;

  text-align:center;

  border:
  1px solid rgba(255,255,255,.06);

  box-shadow:
  0 20px 60px rgba(0,0,0,.5);
}

.onboarding-box h3{
  font-size:1.8rem;
  margin-bottom:14px;
}

.onboarding-box p{
  color:#cbd5e1;
  line-height:1.7;
  margin-bottom:28px;
}

.onboarding-box button{
  padding:14px 22px;

  border-radius:14px;

  background:
  linear-gradient(
    135deg,
    #00c896,
    #00d4ff
  );

  color:white;

  margin:8px;

  font-weight:600;
}

/* =========================================
   INSTALL BUTTON
========================================= */

.install-btn{
  position:fixed;

  left:50%;
  bottom:24px;

  transform:translateX(-50%);

  padding:16px 28px;

  border-radius:999px;

  background:
  linear-gradient(
    135deg,
    #00c896,
    #00d4ff
  );

  color:#ffffff;

  font-weight:700;

  box-shadow:
  0 12px 40px rgba(0,212,255,.4);

  z-index:999999;
}

/* =========================================
   FOOTER
========================================= */

footer{
  padding:40px 20px;

  background:
  #050b18;

  border-top:
  1px solid rgba(255,255,255,.05);

  text-align:center;
}

footer p{
  color:#cbd5e1;
  line-height:1.8;
}

.footer-links{
  display:flex;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;

  gap:20px;

  margin-top:20px;
}

.footer-links a{
  color:#00d4ff;

  font-size:14px;

  text-decoration:none !important;

  transition:.3s ease;
}

.footer-links a:hover{
  color:#00ffcc;
}

/* =========================================
   MOBILE
========================================= */

@media(max-width:1024px){

  .trusted-box{
    position:relative;

    top:auto;
    right:auto;

    transform:none;

    width:100%;
    max-width:360px;

    margin:40px auto 0;
  }

}

@media(max-width:768px){

  #landing{
    padding:
    80px 18px
    100px;
  }

  .hero-content{
    padding:0;
  }

  .hero-content p{
    font-size:1rem;
  }

  .cta-btn{
    width:100%;
    max-width:320px;
  }

  .footer-links{
    flex-direction:column;
    gap:14px;
  }

  .live-popup{
    right:14px;
    left:14px;
    max-width:none;
  }

}

@media(max-width:480px){

  .hero-content h1{
    font-size:2.7rem;
  }

  .hero-content p{
    font-size:.95rem;
  }

  .card{
    padding:22px 18px;
  }

  .install-btn{
    width:90%;
  }

}
