/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  background: #000;
  color: #fff;
  font-family: 'Inter', sans-serif;
}

/* ================= NAVBAR ================= */
.navbar {
  height: 64px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo {
  width: 22px;
}

.nav-title {
  font-size: 15px;
  font-weight: 600;
  position: relative;
  padding-bottom: 6px;
}

/* NAV LINKS */
.nav-links a {
  margin-left: 18px;
  text-decoration: none;
  color: #bdbdbd;
  font-size: 14px;
  position: relative;
  padding-bottom: 6px;
}

/* PURPLE LINE */
.nav-title::after,
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1.5px;
  background: #8a6cff;
  transition: width 0.25s ease;
}

.nav-title:hover::after,
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-title:hover,
.nav-links a:hover {
  text-shadow: 0 0 10px rgba(138,108,255,0.8);
}

/* ================= HERO ================= */
.hero {
  padding: 100px 20px 60px;
  max-width: 1200px;
  margin: auto;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 12px;
}

.hero p {
  color: #ccc;
  font-size: 16px;
  max-width: 520px;
}

/* ================= FEATURES ================= */
.features {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.feature-card {
  background: #0b0b0b;
  padding: 26px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: box-shadow 0.25s ease;
}

.feature-card:hover {
  box-shadow:
    0 0 10px rgba(138,108,255,0.6),
    0 0 24px rgba(138,108,255,0.9);
}

.feature-card h3 {
  margin-bottom: 10px;
}

.feature-card p {
  color: #bbb;
  font-size: 14px;
  margin-bottom: 18px;
}

/* FEATURE BUTTON */
.feature-btn {
  padding: 10px 22px;
  border-radius: 24px;
  border: 1px solid #8a6cff;
  background: transparent;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.feature-btn:hover {
  background: #8a6cff;
  box-shadow:
    0 0 10px rgba(138,108,255,0.7),
    0 0 24px rgba(138,108,255,1);
}

/* ================= PRICING ================= */
.pricing {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px 80px;
  text-align: center;
}

.pricing h2 {
  font-size: 32px;
  margin-bottom: 30px;
}

.price-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.price-card {
  background: #0b0b0b;
  padding: 32px;
  border-radius: 16px;
  width: 260px;
  border: 1px solid rgba(255,255,255,0.08);
}

.price-card.highlight {
  border-color: #8a6cff;
}

.price {
  font-size: 24px;
  margin: 16px 0;
}

/* BUY BUTTON */
.buy-btn {
  padding: 12px 26px;
  border-radius: 30px;
  border: none;
  background: #8a6cff;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: box-shadow 0.25s ease;
}

.buy-btn:hover {
  box-shadow:
    0 0 12px rgba(138,108,255,0.7),
    0 0 28px rgba(138,108,255,1);
}

/* ================= DIVIDER ================= */
.section-divider {
  height: 1px;
  width: 80%;
  margin: 40px auto;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(138,108,255,0.6),
    transparent
  );
}

/* ================= MOBILE & TABLET ================= */
@media (max-width: 900px) {
  .hero {
    padding-top: 90px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero p {
    font-size: 15px;
  }
}

@media (max-width: 600px) {
  .nav-links {
    display: none;
  }

  .hero h1 {
    font-size: 34px;
  }

  .features {
    padding: 40px 16px;
  }

  .pricing h2 {
    font-size: 26px;
  }
}
