* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #0f172a;
  background: #ffffff;
}

.hero {
  min-height: 100vh;
  background: linear-gradient(120deg, #0b3c5d, #06283d);
  color: #ffffff;
  display: flex;
  align-items: center;
}

.hero-inner {
  max-width: 900px;
  padding: 4rem 2rem;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.hero h1 span {
  font-weight: 300;
  opacity: 0.85;
}

.tagline {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-text {
  font-size: 1.1rem;
  max-width: 700px;
  margin-bottom: 2rem;
}

.cta {
  display: inline-block;
  background: #22c55e;
  color: #06283d;
  padding: 0.9rem 1.6rem;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
}

.section {
  max-width: 900px;
  margin: 4rem auto;
  padding: 0 2rem;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.section p {
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
}

.dark {
  background: #f1f5f9;
  padding: 4rem 2rem;
}

.pill-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.pill-list li {
  background: #e2e8f0;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  font-size: 0.95rem;
}

.callout {
  text-align: center;
}

.callout .big {
  font-size: 1.6rem;
  font-weight: 700;
}

footer {
  text-align: center;
  padding: 3rem 1rem;
  background: #020617;
  color: #cbd5f5;
  font-size: 0.9rem;
}
.contact {
  text-align: center;
}

.contact-email a {
  font-size: 1.3rem;
  font-weight: 600;
  color: #0b3c5d;
  text-decoration: none;
}

.contact-email a:hover {
  text-decoration: underline;
}

.contact-note {
  font-size: 0.95rem;
  opacity: 0.8;
  margin-top: 1rem;
}
