:root {
  --navy: #0b1f3a;
  --red: #c8172e;
  --ink: #102033;
  --muted: #607086;
  --line: #d9e1eb;
  --surface: #ffffff;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  display: grid;
  place-items: center;
  margin: 0;
  padding: 1.25rem;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  background:
    linear-gradient(90deg, rgba(5, 18, 36, 0.88), rgba(5, 18, 36, 0.62)),
    radial-gradient(circle at 78% 18%, rgba(200, 23, 46, 0.22), transparent 34%),
    linear-gradient(135deg, #07162a, #12355b 52%, #eaf1f7);
}

main {
  width: min(920px, 100%);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
}

.brand-strip {
  height: 6px;
  background: linear-gradient(90deg, var(--navy) 0 46%, var(--red) 46% 68%, #7db5df 68% 100%);
}

.content {
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  padding: clamp(1.6rem, 5vw, 3.5rem);
}

.logo {
  display: block;
  width: min(620px, 100%);
  height: auto;
  max-height: 86px;
  object-fit: contain;
  object-position: left center;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 1rem;
  color: var(--navy);
  font-size: clamp(2.4rem, 7vw, 5rem);
  line-height: 0.95;
  letter-spacing: 0;
}

p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.62;
}

.status-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.status-board div {
  min-height: 120px;
  padding: 1rem;
  background: var(--surface);
}

.status-board span {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.status-board strong {
  display: block;
  color: var(--navy);
  font-size: 1.15rem;
  line-height: 1.2;
}

footer {
  padding: 1rem clamp(1.6rem, 5vw, 3.5rem);
  color: rgba(255, 255, 255, 0.84);
  background: #07162a;
  font-size: 0.9rem;
  line-height: 1.5;
}

@media (max-width: 700px) {
  body {
    place-items: start center;
  }

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

  .logo {
    max-height: 58px;
  }
}
