* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: #0a0f1c;
  color: #e2e8f0;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e2937 100%);
  padding: 120px 0 100px;
  text-align: center;
}

.badge {
  display: inline-block;
  background: #1e2937;
  color: #34d399;
  padding: 8px 20px;
  border-radius: 9999px;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

h1 {
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

h1 span {
  background: linear-gradient(to right, #60a5fa, #34d399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle {
  font-size: 1.35rem;
  color: #94a3b8;
  max-width: 700px;
  margin: 0 auto 2.5rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 16px 32px;
  border-radius: 9999px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
}

.btn.primary {
  background: white;
  color: black;
}

.btn.secondary {
  border: 2px solid #475569;
  color: #e2e8f0;
}

.btn:hover {
  transform: translateY(-3px);
}

/* Features */
.features {
  padding: 100px 0;
  background: #111827;
}

.features h2 {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 4rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.card {
  background: #1e2937;
  padding: 2.5rem;
  border-radius: 20px;
  transition: all 0.4s;
}

.card:hover {
  transform: translateY(-12px);
  background: #334155;
}

.icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

/* Quickstart */
.quickstart {
  padding: 100px 0;
  background: #0a0f1c;
}

.terminal {
  background: #0f172a;
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid #334155;
  font-family: monospace;
  white-space: pre;
  overflow-x: auto;
}

/* Footer */
footer {
  text-align: center;
  padding: 4rem 0;
  background: #0a0f1c;
  border-top: 1px solid #1e2937;
  color: #64748b;
}
