:root {
  color-scheme: light;
  --blue: #14376b;
  --blue-dark: #0d2345;
  --gold: #d7a928;
  --black: #151514;
  --white: #ffffff;
  --paper: #f7f3eb;
  --line: #c4d3e4;
  --soft: #e9f0f8;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background: var(--blue);
  color: var(--white);
  font-family: "Atkinson Hyperlegible Next", "Atkinson Hyperlegible", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 6rem;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
  color: var(--blue);
  text-decoration: none;
  font-weight: 800;
  line-height: 1.15;
}

.brand img {
  width: clamp(4.5rem, 8vw, 7rem);
  height: auto;
}

.brand span {
  max-width: 22rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: .72rem 1.05rem;
  border: 2px solid var(--black);
  background: var(--blue);
  color: var(--white);
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 .18rem 0 var(--black);
}

.button:hover,
.button:focus-visible {
  background: #0b477f;
}

.shell {
  width: min(100% - 2rem, 72rem);
  min-height: calc(100vh - 6rem);
  margin: 0 auto;
  display: grid;
  align-items: center;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.intro {
  max-width: 56rem;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
}

h1 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: .98;
}

.intro > p:not(.eyebrow) {
  max-width: 42rem;
  margin: clamp(1.5rem, 4vw, 2.5rem) 0 0;
  color: #e8f1fb;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.5;
}

.status {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  max-width: 42rem;
  margin-top: clamp(1.5rem, 4vw, 2.5rem);
  padding: 1.2rem;
  border-top: .45rem solid var(--gold);
  background: var(--white);
  color: var(--blue);
  box-shadow: 0 .35rem 0 var(--black);
}

.status-dot {
  flex: none;
  width: .9rem;
  height: .9rem;
  margin-top: .35rem;
  border-radius: 50%;
  background: var(--gold);
}

.status strong {
  display: block;
  font-size: 1.1rem;
}

.status p {
  margin: .35rem 0 0;
  color: #38536f;
  line-height: 1.45;
}

@media (max-width: 640px) {
  .brand span {
    display: none;
  }

  .topbar {
    min-height: 5rem;
  }

  h1 {
    font-size: clamp(2.7rem, 14vw, 4.6rem);
  }
}
