:root {
  color-scheme: light;
  --background: #fff;
  --blue: #001489;
  --black: #000;
  --line: rgba(0, 20, 137, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--background);
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background: var(--background);
  color: var(--black);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-shell {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  padding: 28px clamp(24px, 5vw, 80px) 24px;
}

.topbar,
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  color: var(--blue);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.topbar {
  padding-bottom: 22px;
}

.wordmark {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.08em;
}

.status {
  margin: 0;
}

.status span {
  display: inline-block;
  margin-left: 7px;
  font-size: 1rem;
  transform: translateY(1px);
}

.hero {
  display: flex;
  flex: 1;
  min-height: 560px;
  flex-direction: column;
  justify-content: center;
  padding: 9vh 0;
}

.kicker {
  margin: 0 0 28px;
  color: var(--blue);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1 {
  max-width: 900px;
  margin: 0;
  color: var(--blue);
  font-size: clamp(5rem, 17vw, 15rem);
  font-weight: 500;
  letter-spacing: -0.09em;
  line-height: 0.77;
}

h1 em {
  font-style: normal;
  font-weight: 300;
}

.hero-footer {
  display: grid;
  max-width: 720px;
  grid-template-columns: minmax(180px, 1fr) minmax(220px, 1fr);
  gap: 40px;
  margin-top: clamp(70px, 12vh, 150px);
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.intro,
.coming-soon {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.5;
}

.intro {
  color: var(--blue);
}

.coming-soon {
  color: var(--black);
}

.footer {
  border-top: 1px solid var(--line);
  border-bottom: 0;
  padding-top: 18px;
}

.footer p {
  margin: 0;
}

@media (max-width: 600px) {
  .site-shell {
    padding: 22px 20px 20px;
  }

  .hero {
    min-height: 0;
    padding: 14vh 0;
  }

  h1 {
    font-size: clamp(4.5rem, 23vw, 8rem);
  }

  .hero-footer {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 90px;
  }
}
