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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #0a0a0b;
  color: #f0f0f5;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 3rem 1.5rem;
}

/* ── Layout ── */
.container {
  width: 100%;
  max-width: 680px;
  text-align: center;
}

/* ── Logo ── */
.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3.5rem;
}

.logo-mark {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #7c3aed;
  box-shadow: 0 0 12px rgba(124, 58, 237, 0.6);
}

.logo-text {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #f0f0f5;
}

.dot { color: #7c3aed; }

/* ── Hero ── */
.hero { margin-bottom: 3rem; }

.badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7c3aed;
  border: 1px solid rgba(124, 58, 237, 0.35);
  border-radius: 100px;
  padding: 0.2rem 0.75rem;
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: #f0f0f5;
}

.hero-sub {
  font-size: 1.05rem;
  color: #777;
  line-height: 1.65;
  margin-bottom: 2.5rem;
}

/* ── Bundle card ── */
.bundle-card {
  background: #111113;
  border: 1px solid #1e1e22;
  border-radius: 20px;
  padding: 2rem 2rem 1.75rem;
  text-align: left;
}

.bundle-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}

.bundle-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.item-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(124, 58, 237, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9f7aea;
  flex-shrink: 0;
}

.item-info {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.item-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: #f0f0f5;
}

.item-desc {
  font-size: 0.72rem;
  color: #666;
}

.bundle-plus {
  font-size: 1.1rem;
  color: #444;
  font-weight: 300;
}

/* ── Pricing row ── */
.bundle-pricing {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 1.75rem;
  background: #0d0d10;
  border-radius: 12px;
  padding: 1rem 0;
}

.price-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.price-main {
  font-size: 1.5rem;
  font-weight: 700;
  color: #f0f0f5;
}

.price-sub {
  font-size: 0.72rem;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.price-divider {
  width: 1px;
  height: 40px;
  background: #1e1e22;
}

/* ── CTA ── */
.cta-button {
  display: block;
  width: 100%;
  text-align: center;
  background: #7c3aed;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  padding: 0.85rem 1.5rem;
  letter-spacing: -0.01em;
  transition: background 0.15s, transform 0.1s;
  cursor: pointer;
}

.cta-button:hover { background: #6d28d9; }
.cta-button:active { transform: scale(0.99); }

.cta-note {
  text-align: center;
  font-size: 0.75rem;
  color: #444;
  margin-top: 0.85rem;
}

/* ── Feature cards ── */
.features { margin-bottom: 2rem; }

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.feature-card {
  background: #0e0e10;
  border: 1px solid #18181b;
  border-radius: 14px;
  padding: 1.4rem 1.25rem;
  text-align: left;
}

.feature-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(124, 58, 237, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9f7aea;
  margin-bottom: 0.9rem;
}

.feature-card h3 {
  font-size: 0.9rem;
  font-weight: 600;
  color: #f0f0f5;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.8rem;
  color: #666;
  line-height: 1.6;
}

/* ── Pricing note ── */
.pricing-note {
  background: rgba(124, 58, 237, 0.06);
  border: 1px solid rgba(124, 58, 237, 0.18);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  margin-bottom: 2.5rem;
}

.pricing-note p {
  font-size: 0.82rem;
  color: #888;
  line-height: 1.6;
}

.pricing-note strong { color: #b89ef5; }

/* ── Footer ── */
.footer {
  font-size: 0.7rem;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ── Responsive ── */
@media (max-width: 540px) {
  .hero h1 { font-size: 2rem; }
  .feature-row { grid-template-columns: 1fr; }
  .bundle-items { flex-direction: column; gap: 0.75rem; }
  .bundle-plus { display: none; }
  .item-info { text-align: center; }
}