* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Inter, Arial, sans-serif;
  background: #0b0f1a;
  color: #eaeaf0;
  line-height: 1.6;
}

a {
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: 100vh;
  background: url("assets/hero-bg.jpg") center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 10, 25, 0.75);
}

.hero-content {
  position: relative;
  max-width: 800px;
  padding: 2rem;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 0.5rem;
}

.hero h2 {
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.status {
  display: block;
  margin-bottom: 2rem;
  opacity: 0.8;
}

.cta {
  display: inline-block;
  padding: 0.9rem 1.8rem;
  background: #3aa0ff;
  color: #fff;
  border-radius: 6px;
  font-weight: 500;
}

.cta.secondary {
  background: transparent;
  border: 1px solid #3aa0ff;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 4rem 2rem;
  background: #0f1425;
}

.feature h3 {
  margin-bottom: 1rem;
}

.target {
  padding: 4rem 2rem;
  text-align: center;
}

.final-cta {
  padding: 4rem 2rem;
  text-align: center;
  background: #0f1425;
}

footer {
  padding: 2rem;
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.7;
}
