.hero {
  min-height: calc(100vh - var(--header-h) - 4rem);
  display: grid;
  align-items: end;
  padding: clamp(2rem, 8vw, 5rem) 1.25rem 3rem;
  background:
    linear-gradient(180deg, rgba(15, 28, 36, 0.25) 0%, rgba(15, 28, 36, 0.88) 72%),
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(52, 98, 118, 0.35), transparent 60%),
    linear-gradient(135deg, #0c151b 0%, #1a3340 48%, #0f1c24 100%);
}

.hero-copy {
  width: min(720px, 100%);
  animation: rise 0.8s var(--ease) both;
}

.hero h1 {
  margin: 0.4rem 0 0.75rem;
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  line-height: 1.05;
  color: var(--ink-strong);
}

.lead {
  margin: 0 0 1.4rem;
  max-width: 38ch;
  font-size: 1.12rem;
  color: var(--muted);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.section-status {
  width: min(1100px, 100%);
  margin: 0 auto;
  padding: 2rem 1.25rem 3.5rem;
  animation: rise 0.9s 0.1s var(--ease) both;
}

.section-status h2 {
  margin: 0 0 0.75rem;
  font-size: 1.5rem;
}

.status-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  margin: 0 0 0.5rem;
}

.pill {
  display: inline-flex;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  font-size: 0.8rem;
  color: var(--muted);
}

.pill-ok {
  border-color: var(--ok);
  color: var(--ok);
  background: var(--ok-soft);
}

@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}
