body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #f7f9fc;
  color: #2d2d2d;
}

.hero {
  background: linear-gradient(135deg, #0057b8, #00a3e0);
  padding: 120px 30px;
  text-align: center;
  color: white;
}

h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

h2 {
  font-size: 1.6rem;
  font-weight: 300;
}

.section {
  padding: 60px 40px;
  max-width: 900px;
  margin: auto;
}

.center {
  text-align: center;
}

.narrow {
  max-width: 700px;
  margin: auto;
}

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

.card {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.08);
}

.coming-soon {
  margin-top: 40px;
  font-size: 1.2rem;
  color: #ffffffcc;
}

footer {
  text-align: center;
  padding: 40px;
  font-size: 0.9rem;
  color: #666;
}

.eyebrow {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-text {
  font-size: 1.15rem;
  line-height: 1.6;
  margin: 20px auto 0;
  color: #ffffffee;
}