* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", system-ui, sans-serif;
}

body {
  background: radial-gradient(circle at top, #0f172a, #020617);
  color: #e5e7eb;
}

/* LOADER */
#loader {
  position: fixed;
  inset: 0;
  background: #020617;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#loader span {
  width: 50px;
  height: 50px;
  border: 4px solid #38bdf8;
  border-top: 4px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* NAV */
.nav {
  display: flex;
  justify-content: space-between;
  padding: 25px 8%;
}

.logo {
  font-weight: 700;
  font-size: 20px;
}

.nav-links a {
  margin-left: 20px;
  color: #cbd5f5;
  text-decoration: none;
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 80px 8%;
  gap: 50px;
  align-items: center;
}

.hero h1 {
  font-size: 48px;
  line-height: 1.2;
}

.hero h1 span {
  color: #38bdf8;
}

.hero p {
  margin: 25px 0;
  color: #cbd5f5;
}

.hero img {
  width: 100%;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* BUTTONS */
.btn {
  background: linear-gradient(135deg, #38bdf8, #2563eb);
  padding: 14px 30px;
  border-radius: 30px;
  color: #fff;
  text-decoration: none;
  display: inline-block;
}

.btn.ghost {
  background: transparent;
  border: 1px solid #38bdf8;
}

/* TRUST */
.trust {
  display: flex;
  justify-content: space-around;
  padding: 40px 8%;
  color: #94a3b8;
}

/* GLASS */
.glass-section {
  margin: 80px 8%;
  padding: 60px;
  background: rgba(255,255,255,0.05);
  border-radius: 20px;
  backdrop-filter: blur(15px);
  text-align: center;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 30px;
  margin-top: 40px;
}

.glass-card {
  background: rgba(255,255,255,0.08);
  padding: 30px;
  border-radius: 16px;
}

/* PRICING */
.pricing {
  padding: 80px 8%;
  text-align: center;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 30px;
  margin-top: 40px;
}

.price-card {
  background: #020617;
  border: 1px solid #1e293b;
  padding: 40px;
  border-radius: 20px;
}

.price-card.highlight {
  border-color: #38bdf8;
}

.price {
  font-size: 32px;
  margin: 15px 0;
}

/* CTA */
.cta {
  text-align: center;
  padding: 80px 20px;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 30px;
  color: #64748b;
}

/* ANIMATION */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}
