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

body {
  background: linear-gradient(135deg, #0f172a, #1e293b, #334155);
  color: white;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 8%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-box {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
}

.nav-buttons {
  display: flex;
  gap: 15px;
}

/* Buttons */
.btn {
  padding: 10px 20px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  font-weight: bold;
}

.primary {
  background: #6366f1;
  color: white;
}

.ghost {
  background: transparent;
  color: white;
}

.outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
}

.large {
  padding: 15px 30px;
  font-size: 16px;
}

/* Hero Section */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 80px 8%;
  gap: 60px;
  align-items: center;
}

.hero-text h2 {
  font-size: 48px;
  line-height: 1.2;
}

.hero-text span {
  color: #818cf8;
}

.hero-text p {
  margin-top: 20px;
  color: #cbd5e1;
  font-size: 18px;
}

.hero-buttons {
  margin-top: 30px;
  display: flex;
  gap: 20px;
}

.hero-card {
  background: rgba(255,255,255,0.05);
  padding: 40px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.feature {
  margin-bottom: 25px;
}

.feature h3 {
  margin-bottom: 5px;
}

.feature p {
  color: #94a3b8;
  font-size: 14px;
}

/* Footer */
footer {
  text-align: center;
  padding: 40px;
  color: #94a3b8;
}
