body {
  background: red !important;
  color: white !important;
}
* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #0b0b10;
  color: #ffffff;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 60px 24px;
}

h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
}

h2 {
  font-size: 36px;
  margin-bottom: 40px;
}

.subtitle {
  color: #c7c7d1;
  font-size: 18px;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at top, #1b1b3a, #0b0b10);
}

.badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(99,102,241,.15);
  color: #a5b4fc;
  border-radius: 999px;
  margin-bottom: 24px;
}

.buttons {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}

button {
  padding: 14px 28px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

.primary {
  background: #6366f1;
  color: white;
}

.secondary {
  background: transparent;
  border: 1px solid #333;
  color: white;
}

/* HOW */
.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
  gap: 32px;
}

.step span {
  display: inline-block;
  background: #6366f1;
  width: 32px;
  height: 32px;
  text-align: center;
  line-height: 32px;
  border-radius: 50%;
  margin-bottom: 12px;
}

/* PRICING */
.pricing {
  background: #0e0e15;
}

.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
  gap: 32px;
}

.plan {
  background: #151525;
  padding: 32px;
  border-radius: 16px;
}

.featured {
  border: 2px solid #6366f1;
}

.price {
  font-size: 32px;
  font-weight: 800;
}

/* CTA */
.cta {
  text-align: center;
  padding: 100px 24px;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 40px;
  color: #777;
}

/* MODAL */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.7);
  justify-content: center;
  align-items: center;
}

.modal-box {
  background: white;
  max-width: 720px;
  width: 90%;
  border-radius: 16px;
  padding: 20px;
}

.close {
  color: black;
  float: right;
  cursor: pointer;
}
