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

body {
  font-family: 'Inter', sans-serif;
  background: #0a0a0a;
  color: #f0f0f0;
  line-height: 1.6;
}

/* NAV */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  border-bottom: 1px solid #1a1a1a;
  position: sticky;
  top: 0;
  background: #0a0a0a;
  z-index: 100;
}

.logo { height: 40px; object-fit: contain; }

.nav-cta {
  background: #f0a500;
  color: #000;
  padding: 10px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: background 0.2s;
}
.nav-cta:hover { background: #ffc233; }

/* HERO */
.hero {
  text-align: center;
  padding: 100px 20px;
  max-width: 800px;
  margin: 0 auto;
}

.badge {
  display: inline-block;
  background: #1a1a1a;
  border: 1px solid #333;
  color: #f0a500;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 32px;
}

.hero h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  color: #ffffff;
}

.highlight { color: #f0a500; }

.subheadline {
  font-size: 20px;
  color: #888;
  max-width: 600px;
  margin: 0 auto 40px;
}

.btn-primary {
  display: inline-block;
  background: #f0a500;
  color: #000;
  padding: 16px 36px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: #ffc233; transform: translateY(-2px); }

.hero-note {
  margin-top: 16px;
  font-size: 14px;
  color: #555;
}

/* HOW IT WORKS */
.how {
  padding: 80px 40px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.how h2, .features h2, .pricing h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 48px;
  color: #ffffff;
}

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

.step {
  background: #111;
  border: 1px solid #1f1f1f;
  border-radius: 16px;
  padding: 32px;
  text-align: left;
}

.step-number {
  font-size: 48px;
  font-weight: 800;
  color: #f0a500;
  margin-bottom: 16px;
}

.step h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}

.step p { color: #888; font-size: 15px; }

/* FEATURES */
.features {
  padding: 80px 40px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

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

.feature-card {
  background: #111;
  border: 1px solid #1f1f1f;
  border-radius: 16px;
  padding: 28px;
  text-align: left;
  transition: border-color 0.2s;
}
.feature-card:hover { border-color: #f0a500; }

.feature-icon { font-size: 32px; margin-bottom: 16px; }

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.feature-card p { color: #888; font-size: 15px; }

/* PRICING */
.pricing {
  padding: 80px 40px;
  text-align: center;
}

.pricing-sub {
  color: #888;
  font-size: 18px;
  margin-top: -32px;
  margin-bottom: 48px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
}

.pricing-card {
  background: #111;
  border: 2px solid #333;
  border-radius: 24px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
}

.pricing-card-featured {
  border-color: #f0a500;
  transform: scale(1.04);
}

.plan-name {
  font-size: 22px;
  font-weight: 700;
  color: #f0a500;
  margin-bottom: 16px;
  text-align: center;
}

.btn-secondary {
  display: block;
  background: transparent;
  color: #f0a500;
  border: 2px solid #f0a500;
  padding: 16px 36px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  text-align: center;
  box-sizing: border-box;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.btn-secondary:hover {
  background: #f0a500;
  color: #000;
  transform: translateY(-2px);
}

.nav-link {
  color: #aaa;
  text-decoration: none;
  font-weight: 600;
  margin-right: 16px;
  padding: 8px 16px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.nav-link:hover {
  color: #f0a500;
  background: rgba(240, 165, 0, 0.08);
}

.founding-badge {
  display: inline-block;
  background: #f0a500;
  color: #000;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 24px;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
}

.real-price {
  font-size: 28px;
  color: #555;
  text-decoration: line-through;
}

.current-price {
  font-size: 56px;
  font-weight: 800;
  color: #f0a500;
}

.per-month {
  font-size: 20px;
  font-weight: 500;
  color: #888;
}

.price-features {
  list-style: none;
  text-align: left;
  margin-bottom: 32px;
}

.price-features li {
  padding: 10px 0;
  border-bottom: 1px solid #1f1f1f;
  font-size: 16px;
  color: #ccc;
}
.price-features li:last-child { border-bottom: none; }

.btn-large {
  width: 100%;
  text-align: center;
  padding: 18px;
  font-size: 18px;
}

.price-note {
  margin-top: 16px;
  font-size: 13px;
  color: #555;
}

/* FOOTER */
footer {
  border-top: 1px solid #1a1a1a;
  padding: 40px;
  text-align: center;
}

.logo-footer { height: 32px; margin-bottom: 16px; }

footer p { color: #555; font-size: 14px; margin-bottom: 8px; }
footer a { color: #f0a500; text-decoration: none; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero h1 { font-size: 36px; }
  .steps, .feature-grid { grid-template-columns: 1fr; }
  nav { padding: 16px 20px; }
  .hero { padding: 60px 20px; }
}
