:root {
  color-scheme: dark;
  --ink: #f7fbff;
  --muted: #b9c8d6;
  --line: rgba(255, 255, 255, 0.16);
  --panel: rgba(4, 14, 24, 0.78);
  --blue: #0092d6;
  --blue-strong: #0078b8;
  --navy: #071424;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  font-family: Inter, Segoe UI, Arial, sans-serif;
  background: var(--navy);
  color: var(--ink);
}

body {
  background:
    linear-gradient(120deg, rgba(0, 146, 214, 0.78), rgba(7, 20, 36, 0.3) 38%, rgba(0, 0, 0, 0.88)),
    url("/assets/site-bg.jpg");
  background-size: cover;
  background-position: center;
}

.shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.hero {
  min-height: 76vh;
  padding: 28px clamp(18px, 5vw, 72px) 64px;
  display: flex;
  flex-direction: column;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brandmark {
  width: min(270px, 52vw);
  height: auto;
  display: block;
}

.nav-link,
.primary,
.secondary {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.nav-link,
.secondary {
  color: var(--ink);
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.2);
}

.hero-content {
  width: min(760px, 100%);
  margin-top: auto;
  margin-bottom: clamp(24px, 8vh, 88px);
}

.eyebrow {
  margin: 0 0 14px;
  color: #9ee2ff;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1 {
  margin: 0;
  font-size: clamp(46px, 9vw, 104px);
  line-height: 0.94;
  letter-spacing: 0;
}

.lead {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.55;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.primary {
  color: #ffffff;
  background: var(--blue);
  box-shadow: 0 14px 30px rgba(0, 146, 214, 0.34);
}

.primary:hover {
  background: var(--blue-strong);
}

.secondary:hover,
.nav-link:hover {
  border-color: rgba(255, 255, 255, 0.42);
}

.status-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
}

.status-band div {
  min-height: 132px;
  padding: 28px clamp(18px, 4vw, 56px);
  background: var(--panel);
}

.status-band strong,
.status-band span {
  display: block;
}

.status-band strong {
  font-size: 18px;
}

.status-band span {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.45;
}

@media (max-width: 780px) {
  .hero {
    min-height: 72vh;
  }

  .topbar {
    align-items: flex-start;
  }

  .status-band {
    grid-template-columns: 1fr;
  }
}
