* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  background: radial-gradient(circle at top, #1d3b6f, #050816);
  color: #f9fafb;
  min-height: 100vh;
}

.page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.5rem;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0 1rem;
}

.logo {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.06em;
}

.nav a {
  margin-left: 1.25rem;
  text-decoration: none;
  color: #e5e7eb;
  font-size: 0.9rem;
}

.nav a:hover {
  color: #38bdf8;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 0 3rem;
}

.hero-text {
  max-width: 600px;
  text-align: left;
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.hero-text h2 {
  font-size: 1.3rem;
  font-weight: 500;
  color: #bfdbfe;
  margin-bottom: 1.5rem;
}

.hero-text p {
  font-size: 1rem;
  color: #d1d5db;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cta {
  padding: 0.8rem 1.8rem;
  border-radius: 999px;
  border: none;
  font-size: 0.95rem;
  font-weight: 600;
  background: linear-gradient(90deg, #38bdf8, #6366f1);
  color: white;
  cursor: pointer;
}

.cta:hover {
  opacity: 0.9;
}

.footer {
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  padding-top: 1rem;
  font-size: 0.8rem;
  color: #9ca3af;
  text-align: center;
}
