:root {
  color-scheme: light;
  --ink: #121722;
  --muted: #5c6576;
  --line: rgba(18, 23, 34, 0.12);
  --gold: #c99622;
  --blue: #0e63c7;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(245, 247, 251, 0.98)),
    radial-gradient(circle at 50% 8%, rgba(22, 101, 213, 0.12), transparent 34%),
    radial-gradient(circle at 62% 24%, rgba(201, 150, 34, 0.14), transparent 28%);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

.page-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 18px;
}

.hero {
  width: min(860px, 100%);
  text-align: center;
}

.brand-mark {
  width: min(300px, 70vw);
  aspect-ratio: 1;
  margin: 0 auto 22px;
  display: grid;
  place-items: center;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 26px 48px rgba(18, 23, 34, 0.14));
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(40px, 8vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
}

.lead {
  width: min(690px, 100%);
  margin: 22px auto 0;
  color: var(--muted);
  font-size: clamp(18px, 3.2vw, 24px);
  line-height: 1.5;
}

.status-panel {
  width: min(760px, 100%);
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.status-panel span {
  min-height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  color: #263043;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  padding: 12px;
  box-shadow: 0 14px 34px rgba(18, 23, 34, 0.07);
}

.note {
  margin: 28px auto 0;
  color: #697386;
  font-size: 15px;
  line-height: 1.6;
}

.contact-link {
  width: fit-content;
  max-width: 100%;
  margin: 16px auto 0;
  display: block;
  color: var(--blue);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.4;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.contact-link:hover {
  text-decoration: underline;
}

@media (max-width: 720px) {
  .page-shell {
    align-items: start;
    padding-top: 28px;
  }

  .brand-mark {
    width: min(230px, 66vw);
    margin-bottom: 18px;
  }

  .status-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 420px) {
  .status-panel {
    grid-template-columns: 1fr;
  }
}
