/* Reset some basic styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base styles */
body {
  background: #0f172a;
  color: #e2e8f0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  padding: 2rem;
}

/* Hero Section */
.hero {
  text-align: center;
  margin-bottom: 4rem;
}

.hero h1 {
  font-size: 2.5rem;
  color: #38bdf8;
  margin-bottom: 0.5rem;
}

.tagline {
  font-size: 1.2rem;
  color: #cbd5e1;
  margin-bottom: 1.5rem;
}

.cta-button {
  background-color: #38bdf8;
  color: #0f172a;
  padding: 0.8rem 1.6rem;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background-color: #0ea5e9;
}

/* Story Section */
.story {
  max-width: 800px;
  margin: auto;
  text-align: center;
}

.story h2 {
  font-size: 2rem;
  color: #f472b6;
  margin-bottom: 1rem;
}

.story p {
  margin-bottom: 1rem;
  color: #cbd5e1;
}

.launch-soon {
  font-weight: bold;
  color: #facc15;
}

/* Footer */
footer {
  text-align: center;
  margin-top: 5rem;
  font-size: 0.9rem;
  color: #94a3b8;
}
