/* GENERAL */
body {
  margin: 0;
  background: #05050a;
  font-family: 'Segoe UI', sans-serif;
  color: white;
  overflow-x: hidden;
}

/* NAVBAR */
nav {
  width: 100%;
  padding: 18px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  z-index: 10;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(10px);
}

nav .logo {
  font-size: 1.8rem;
  font-weight: bold;
  background: linear-gradient(90deg, #6a00ff, #00eaff);
  -webkit-background-clip: text;
  color: transparent;
}

nav .links {
  display: flex;
  align-items: center;
  gap: 35px;
}

nav .links a {
  text-decoration: none;
  color: #ccc;
  font-size: 1.05rem;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
}

nav .links a:hover {
  color: #00eaff;
  text-shadow: 0 0 10px #00eaff;
}

nav .links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #00eaff;
  transition: 0.3s;
  box-shadow: 0 0 10px #00eaff;
}

nav .links a:hover::after {
  width: 100%;
}

/* MOBILE MENU */
.menu-btn {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: #00eaff;
}

@media (max-width: 750px) {
  nav .links {
    display: none;
    position: absolute;
    top: 70px;
    right: 40px;
    background: rgba(0,0,0,0.7);
    padding: 20px 30px;
    border-radius: 12px;
    flex-direction: column;
    gap: 20px;
  }

  nav .links.show {
    display: flex;
  }

  .menu-btn {
    display: block;
  }
}

/* HERO */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 80px;
  animation: fadeIn 2s ease;
}

.hero h1 {
  font-size: 4rem;
  background: linear-gradient(90deg, #6a00ff, #00eaff);
  -webkit-background-clip: text;
  color: transparent;
  animation: glow 3s infinite alternate;
}

.hero p {
  font-size: 1.3rem;
  opacity: 0.8;
  margin-top: -10px;
}

/* BUTTONS */
.btn {
  margin-top: 25px;
  padding: 14px 30px;
  background: #6a00ff;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  transition: 0.3s;
  font-size: 1.1rem;
}

.btn:hover {
  background: #00eaff;
  box-shadow: 0 0 20px #00eaff;
}

/* GLOW BACKGROUND */
.glow {
  position: fixed;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,234,255,0.3), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(80px);
  animation: pulse 6s infinite alternate;
  z-index: -1;
}

/* FEATURES */
.features {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 80px 40px;
  flex-wrap: wrap;
}

.card {
  background: rgba(10,10,20,0.7);
  padding: 30px;
  width: 280px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 0 20px rgba(0,234,255,0.1);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 25px rgba(0,234,255,0.3);
}

/* PRICING */
.pricing {
  text-align: center;
  padding: 80px 20px;
}

.pricing h2 {
  font-size: 2.4rem;
  background: linear-gradient(90deg, #6a00ff, #00eaff);
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 40px;
}

.pricing-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.price-card {
  background: rgba(10,10,20,0.7);
  padding: 30px;
  width: 280px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 0 20px rgba(0,234,255,0.1);
  transition: 0.3s;
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 25px rgba(0,234,255,0.3);
}

.price-card.popular {
  border: 2px solid #00eaff;
  box-shadow: 0 0 30px rgba(0,234,255,0.4);
}

.price-card h3 {
  font-size: 1.6rem;
  color: #00eaff;
}

.price-card .price {
  font-size: 1.8rem;
  margin: 10px 0 20px 0;
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.price-card ul li {
  margin-bottom: 8px;
  opacity: 0.9;
}

/* LEGAL PAGES */
.legal-container {
  max-width: 900px;
  margin: 160px auto 140px auto;
  padding: 35px 40px;
  background: rgba(5, 5, 15, 0.9);
  border-radius: 16px;
  box-shadow: 0 0 30px rgba(0, 234, 255, 0.15);
  backdrop-filter: blur(10px);
}

.legal-container h1 {
  font-size: 2.4rem;
  background: linear-gradient(90deg, #6a00ff, #00eaff);
  -webkit-background-clip: text;
  color: transparent;
}

.legal-container h2 {
  margin-top: 25px;
  font-size: 1.4rem;
  color: #00eaff;
}

.legal-container p,
.legal-container li {
  line-height: 1.6;
  opacity: 0.9;
}

.legal-container ul {
  margin-left: 20px;
  padding-left: 15px;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 40px 20px;
  background: rgba(0,0,0,0.4);
  margin-top: 60px;
  position: relative;
  z-index: 5;
}

footer .footer-links {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 25px;
}

footer .footer-links a {
  color: #00eaff;
  text-decoration: none;
  transition: 0.3s;
}

footer .footer-links a:hover {
  text-shadow: 0 0 10px #00eaff;
}

/* ANIMATIONS */
@keyframes glow {
  from { text-shadow: 0 0 10px #6a00ff; }
  to { text-shadow: 0 0 25px #00eaff; }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  from { opacity: 0.4; }
  to { opacity: 0.8; }
}