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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #2b2b33;
  line-height: 1.6;
  background-color: #fafafa;
  background-image:
    linear-gradient(125deg, transparent 38%, rgba(140,140,150,0.10) 39%, rgba(140,140,150,0.04) 40%, transparent 41%),
    linear-gradient(35deg, transparent 60%, rgba(120,120,130,0.08) 61%, transparent 63%),
    linear-gradient(160deg, transparent 20%, rgba(160,160,170,0.06) 21%, transparent 23%),
    linear-gradient(200deg, transparent 75%, rgba(130,130,140,0.07) 76%, transparent 78%);
  background-attachment: fixed;
  background-size: cover;
}

a { text-decoration: none; }

.nav {
  position: sticky;
  top: 0;
  background: rgba(250, 250, 250, 0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #ddd9e0;
  z-index: 10;
}

.nav-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 22px;
  font-weight: 700;
  color: #5B4B8A;
}

.nav nav a {
  margin-left: 28px;
  color: #2b2b33;
  font-weight: 500;
}

.nav nav a:hover { color: #5B4B8A; }

.hero {
  text-align: center;
  padding: 100px 24px 80px;
}

.hero-inner { max-width: 700px; margin: 0 auto; }

.hero h1 {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1d1d24;
}

.subtitle {
  font-size: 18px;
  color: #5a5a66;
  margin-bottom: 36px;
}

.cta {
  display: inline-block;
  background: #5B4B8A;
  color: white;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  transition: background 0.2s;
}

.cta:hover { background: #5E63A8; }

.how-it-works {
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 24px;
  text-align: center;
}

.how-it-works h2 {
  font-size: 32px;
  margin-bottom: 50px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.step {
  background: rgba(255,255,255,0.7);
  padding: 32px 24px;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  text-align: left;
}

.step-number {
  display: inline-block;
  width: 32px;
  height: 32px;
  background: #5B4B8A;
  color: white;
  border-radius: 50%;
  text-align: center;
  line-height: 32px;
  font-weight: 700;
  margin-bottom: 16px;
}

.step h3 { margin-bottom: 10px; font-size: 18px; }
.step p { color: #5a5a66; font-size: 15px; }

.pricing {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 24px;
  text-align: center;
}

.pricing h2 { font-size: 32px; margin-bottom: 8px; }

.available-now {
  display: inline-block;
  background: rgba(91, 75, 138, 0.1);
  color: #5B4B8A;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 36px;
}

.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.plans-single {
  grid-template-columns: 1fr;
  max-width: 440px;
  margin: 0 auto 50px;
}

.plans-two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 720px;
  margin: 0 auto;
}

.founding-offer {
  text-align: center;
  margin-bottom: 30px;
}

.founding-badge {
  font-size: 20px;
  font-weight: 700;
  color: #5B4B8A;
  margin-bottom: 6px;
}

.founding-note {
  color: #5a5a66;
  font-size: 14px;
}

.plan {
  background: rgba(255,255,255,0.7);
  border: 1px solid #ddd9e0;
  border-radius: 16px;
  padding: 36px 28px;
  text-align: left;
}

.plan.featured {
  border: 2px solid #5B4B8A;
  transform: scale(1.03);
}

.plan h3 { font-size: 22px; margin-bottom: 8px; }

.price {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #5B4B8A;
}

.price span { font-size: 16px; color: #5a5a66; font-weight: 400; }

.plan ul { list-style: none; margin-bottom: 28px; }

.plan li {
  padding: 6px 0;
  color: #5a5a66;
  font-size: 15px;
}

.plan li::before {
  content: "✓ ";
  color: #5B4B8A;
  font-weight: 700;
}

.plan-cta {
  display: block;
  text-align: center;
  background: #2b2b33;
  color: white;
  padding: 12px;
  border-radius: 10px;
  font-weight: 600;
}

.coming-soon {
  text-align: center;
  opacity: 0.85;
}

.coming-soon h3 { margin-bottom: 8px; }

.launching {
  color: #5a5a66;
  font-size: 14px;
  margin-bottom: 24px;
}

.waitlist-cta {
  background: #5a5a66;
}

.waitlist-cta:hover {
  background: #44444d;
}

.plan.featured .plan-cta { background: #5B4B8A; }

.faq {
  max-width: 700px;
  margin: 0 auto;
  padding: 80px 24px;
}

.faq h2 { font-size: 32px; margin-bottom: 40px; text-align: center; }

.faq-item { margin-bottom: 28px; }
.faq-item h3 { font-size: 18px; margin-bottom: 8px; }
.faq-item p { color: #5a5a66; }

footer {
  text-align: center;
  padding: 40px 24px;
  color: #8a8a96;
  font-size: 14px;
  border-top: 1px solid #ddd9e0;
}

footer a { color: #8a8a96; }

@media (max-width: 768px) {
  .steps, .plans { grid-template-columns: 1fr; }
  .hero h1 { font-size: 32px; }
  .plan.featured { transform: none; }
}
