* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #f5f5f5;
  background: #07111f;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 40px;
  background: rgba(0, 0, 0, 0.65);
}

.site-title {
  font-size: 1.4rem;
  font-weight: 700;
}

.site-nav a {
  color: #f5f5f5;
  text-decoration: none;
  margin-left: 28px;
}

.site-nav a.active {
  border-bottom: 2px solid #8b8cff;
  padding-bottom: 6px;
}

.hero {
  min-height: calc(100vh - 140px);
  display: grid;
  place-items: center;
  padding: 40px 20px;
  background:
    linear-gradient(rgba(7, 17, 31, 0.4), rgba(7, 17, 31, 0.9)),
    radial-gradient(circle at top left, #1f4068, transparent 40%),
    #07111f;
}

.hero-card {
  max-width: 850px;
  width: 100%;
  padding: 56px 32px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 14px;
  background: rgba(0,0,0,0.45);
}

.rocket {
  font-size: 3rem;
}

.hero-card h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  margin: 24px 0 16px;
}

.hero-card p {
  font-size: 1.2rem;
  line-height: 1.5;
}

.status {
  color: #aeb4ff;
}

.page {
  min-height: calc(100vh - 140px);
  padding: 48px 40px;
}

.site-footer {
  text-align: center;
  padding: 20px;
  color: #aaa;
  background: rgba(0, 0, 0, 0.65);
}