:root {
  --bg: #0a0a0f;
  --bg-2: #11111a;
  --fg: #e8e8f0;
  --muted: #9a9ab0;
  --accent: #a78bfa;
  --accent-2: #7c3aed;
  --border: #1e1e2e;
  --card: #14141f;
  --green: #22d3a0;
}

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

html, body {
  background: var(--bg);
  color: var(--fg);
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body {
  background-image:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(167, 139, 250, 0.18), transparent 60%),
    radial-gradient(ellipse 60% 40% at 100% 100%, rgba(124, 58, 237, 0.1), transparent 60%);
  min-height: 100vh;
}

main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 24px 60px;
}

/* --- Hero --- */
.hero {
  text-align: center;
  padding: 40px 0 80px;
}

.badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(167, 139, 250, 0.12);
  border: 1px solid rgba(167, 139, 250, 0.3);
  color: var(--accent);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 24px;
  background: linear-gradient(180deg, #fff 0%, #b5b5cc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sub {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--muted);
  max-width: 680px;
  margin: 0 auto 40px;
}

.sub code {
  background: var(--card);
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 0.92em;
  color: var(--accent);
  border: 1px solid var(--border);
}

.agents {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}

.agents span {
  padding: 8px 14px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 14px;
  color: var(--fg);
}

/* --- Capture form --- */
.capture {
  display: flex;
  gap: 8px;
  max-width: 480px;
  margin: 0 auto 14px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 6px;
  transition: border-color 0.15s ease;
}

.capture:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(167, 139, 250, 0.12);
}

.capture input {
  flex: 1;
  background: transparent;
  border: 0;
  padding: 12px 16px;
  color: var(--fg);
  font-size: 15px;
  outline: none;
}

.capture input::placeholder { color: var(--muted); }

.capture button {
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-2) 100%);
  color: white;
  border: 0;
  padding: 12px 20px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.1s ease, filter 0.15s ease;
}

.capture button:hover { filter: brightness(1.1); }
.capture button:active { transform: scale(0.98); }

.micro {
  font-size: 13px;
  color: var(--muted);
}

/* --- Bundles --- */
.bundles {
  padding: 60px 0;
  border-top: 1px solid var(--border);
}

.bundles h2,
.why h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 32px;
  text-align: center;
  font-weight: 700;
  letter-spacing: -0.02em;
}

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

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px;
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.card:hover {
  border-color: rgba(167, 139, 250, 0.4);
  transform: translateY(-2px);
}

.card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  font-weight: 700;
}

.card p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 16px;
  min-height: 42px;
}

.price {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(34, 211, 160, 0.12);
  color: var(--green);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
}

.price.soon {
  background: rgba(154, 154, 176, 0.1);
  color: var(--muted);
}

/* --- Why --- */
.why {
  padding: 60px 0;
  border-top: 1px solid var(--border);
}

.why ul {
  max-width: 720px;
  margin: 0 auto;
  list-style: none;
  display: grid;
  gap: 16px;
}

.why li {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 22px;
  font-size: 15px;
  color: var(--muted);
}

.why li strong { color: var(--fg); }

.why code {
  background: var(--bg-2);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.92em;
  color: var(--accent);
}

/* --- Footer --- */
footer {
  padding: 60px 0 0;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}

.links {
  margin-bottom: 14px;
}

.links a {
  color: var(--muted);
  text-decoration: none;
  margin: 0 4px;
  transition: color 0.15s ease;
}

.links a:hover { color: var(--accent); }

@media (max-width: 600px) {
  main { padding: 40px 16px; }
  .capture { flex-direction: column; }
  .capture button { width: 100%; }
}
