/* ========================
   LANDING PAGE STYLES
   ======================== */
:root {
  --primary-color: #7034f0;
  --secondary-color: #d054c2;
  --background-color: #0e0f14;
  --card-color: #151726;
  --border-color: #23243a;
  --text-color: #eaeaf0;
  --text-muted-color: #a1a1b3;
  --font-main: "Inter", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  background-color: var(--background-color);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Navbar */
.navbar {
  padding: 24px 0;
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 10;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.btn-login {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: white;
  text-decoration: none;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.btn-login:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

/* Hero Section */
.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding-top: 80px;
}

.bg-glow {
  position: absolute;
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(112, 52, 240, 0.15) 0%,
    rgba(14, 15, 20, 0) 70%
  );
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  pointer-events: none;
}

.badge-pill {
  display: inline-block;
  background: rgba(112, 52, 240, 0.1);
  color: #9d6bf5;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(112, 52, 240, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  line-height: 1.1;
}

.text-gradient {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-muted-color);
  max-width: 600px;
  margin: 0 auto 40px;
}

/* Buttons */
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
}
.btn-primary {
  background: var(--primary-color);
  color: white;
  padding: 14px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  border: none;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(112, 52, 240, 0.4);
}
.btn-secondary {
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-color);
  padding: 14px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--text-muted-color);
}

/* Features */
.features {
  padding: 60px 0 100px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-bottom: 80px;
}
.feature-card {
  background: var(--card-color);
  padding: 32px;
  border-radius: 24px;
  border: 1px solid var(--border-color);
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}
.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.icon-box {
  width: 48px;
  height: 48px;
  background: rgba(112, 52, 240, 0.1);
  color: var(--primary-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  font-weight: 600;
}
.feature-card p {
  color: var(--text-muted-color);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Footer */
.main-footer {
  text-align: center;
  color: var(--text-muted-color);
  font-size: 0.85rem;
  padding-top: 40px;
  border-top: 1px solid var(--border-color);
  opacity: 0.6;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero-actions {
    flex-direction: column;
  }
  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
  .nav-container {
    flex-direction: column;
    gap: 20px;
  }
}
