* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: radial-gradient(circle at top, #151521, #0B0B0F);
  color: #FFFFFF;
  line-height: 1.6;
}
html {
  scroll-behavior: smooth; /* anchor links smooth scroll */
}

.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

section {
  scroll-margin-top: 90px; /* sticky navbar offset */
}



/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 40px;
  background: rgba(18,18,26,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #2A2A35;
  position: sticky;
  top: 0;
  z-index: 10;
}

.logo {
  font-size: 24px;
  font-weight: 700;
}

.logo span {
  color: #8B5CF6;
}

.navbar nav a {
  margin-left: 24px;
  color: #A1A1AA;
  text-decoration: none;
}

.navbar nav a:hover {
  color: #FFFFFF;
}

/* HERO */
.hero {
  text-align: center;
  padding: 120px 20px;
}

.hero h1 {
  font-size: 52px;
  background: linear-gradient(90deg, #8B5CF6, #22D3EE);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  margin: 20px auto 40px;
  max-width: 700px;
  color: #A1A1AA;
}

.trust-text {
  margin-top: 18px;
  font-size: 14px;
  color: #6B7280;
}

/* BUTTON */
.btn {
  display: inline-block;
  padding: 14px 38px;
  border-radius: 14px;
  background: linear-gradient(90deg, #8B5CF6, #22D3EE);
  color: #0B0B0F;
  font-weight: 600;
  box-shadow: 0 0 25px rgba(139,92,246,0.4);
  transition: 0.3s ease;
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(34,211,238,0.6);
}

/* SECTION */
.section {
  padding: 90px 20px;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.section h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.card {
  background: #1A1A24;
  padding: 28px;
  border-radius: 18px;
  border: 1px solid #2A2A35;
}

/* HOW */
.steps {
  margin-top: 30px;
  color: #A1A1AA;
  list-style-position: inside;
}

/* CTA */
.cta {
  padding: 100px 20px;
  background: linear-gradient(180deg, transparent, #12121A);
  text-align: center;
}

/* FOOTER */
footer {
  border-top: 1px solid #2A2A35;
  padding: 24px;
  text-align: center;
  color: #6B7280;
}

/* ANIMATIONS */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 34px;
  }

  .navbar {
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 28px;
  }

  .btn {
    padding: 12px 28px;
    font-size: 14px;
    display: inline-block;
    margin-top: 12px;
  }
}

.footer-links {
  margin-bottom: 10px;
}

.footer-links a {
  margin: 0 12px;
  color: #A1A1AA;
  text-decoration: none;
  font-size: 14px;
}

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

/* =========================
   LEGAL PAGES – PREMIUM
========================= */

.legal-page {
  min-height: 100vh;
  background: linear-gradient(180deg, #0B0B0F, #12121A);
  padding: 100px 16px 60px;
}

.legal-wrapper {
  max-width: 920px;
  margin: auto;
  background: #0F0F16;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  overflow: hidden;
}

.legal-header {
  padding: 48px 40px;
  border-bottom: 1px solid #23232E;
  background: linear-gradient(90deg, #141420, #0F0F16);
}

.legal-header h1 {
  font-size: 36px;
  margin-bottom: 8px;
}

.legal-header p {
  color: #9CA3AF;
  font-size: 15px;
}

.legal-content {
  padding: 40px;
}

.legal-content h2 {
  font-size: 20px;
  margin-top: 40px;
  margin-bottom: 12px;
  color: #FFFFFF;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  font-size: 15px;
  line-height: 1.9;
  color: #B5B5C3;
  margin-bottom: 16px;
}

.legal-divider {
  height: 1px;
  background: #23232E;
  margin: 32px 0;
}

/* Mobile */
@media (max-width: 600px) {
  .legal-header {
    padding: 32px 24px;
  }

  .legal-content {
    padding: 28px 24px;
  }

  .legal-header h1 {
    font-size: 28px;
  }
}
/* Legal Footer */
.legal-footer {
  border-top: 1px solid #23232E;
  padding: 24px 40px;
  text-align: center;
  font-size: 14px;
  color: #8B8B99;
  background: #0F0F16;
}

.legal-footer span {
  color: #FFFFFF;
  font-weight: 500;
}
/* Brand Logo */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  height: 36px;
  width: auto;
}

.brand-name {
  font-size: 22px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.4px;
}

.note {
  display: block;
  margin-top: 20px;
  margin-bottom: 24px;
  color: #666;
  font-size: 0.95rem;
  text-align: center;
}

/* Grid container */
.stats .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 cards in a row on desktop */
  gap: 30px;
  max-width: 1200px;  /* limits total width */
  margin: 0 auto;      /* center grid */
}

/* Responsive: stack cards on smaller screens */
@media (max-width: 1024px) {
  .stats .grid {
    grid-template-columns: repeat(2, 1fr); /* 2 per row on tablet */
  }
}

@media (max-width: 600px) {
  .stats .grid {
    grid-template-columns: 1fr; /* 1 per row on mobile */
  }
}

/* Stats cards */
.stats .card {
  background: radial-gradient(circle at top, rgba(255,255,255,0.05), rgba(0,0,0,0.9));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 36px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: ambientGlow 7s ease-in-out infinite;
}

/* Neon glow overlay */
.stats .card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  background: linear-gradient(120deg, rgba(0,255,200,0.35), rgba(0,140,255,0.35), rgba(0,255,200,0.35));
  opacity: 0;
  filter: blur(14px);
  transition: opacity 0.3s ease;
  z-index: 0;
}

/* Hover effects */
.stats .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.6), 0 0 40px rgba(0,200,255,0.35);
}
.stats .card:hover::before {
  opacity: 1;
}

/* Keep content above glow */
.stats .card h3,
.stats .card p {
  position: relative;
  z-index: 1;
}

/* Numbers */
.stats .card h3 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 6px;
  background: linear-gradient(90deg, #00ffd5, #00b4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 20px rgba(0,255,213,0.45);
}

/* Text */
.stats .card p {
  color: #b0b0b0;
  font-size: 0.95rem;
}

/* Glow animation */
@keyframes ambientGlow {
  0% { box-shadow: 0 0 18px rgba(0,255,200,0.15); }
  50% { box-shadow: 0 0 36px rgba(0,180,255,0.28); }
  100% { box-shadow: 0 0 18px rgba(0,255,200,0.15); }
}




