:root {
  color-scheme: dark;
  --ink: #171713;
  --paper: #e9e4d8;
  --signal: #f04f2f;
  --muted: #9b978e;
  --line: rgba(233, 228, 216, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--ink);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--paper);
  background:
    linear-gradient(90deg, transparent 49.8%, rgba(233, 228, 216, 0.035) 50%, transparent 50.2%),
    radial-gradient(circle at 88% 8%, rgba(240, 79, 47, 0.13), transparent 28%),
    var(--ink);
  font-family: "Arial Narrow", "Roboto Condensed", Arial, sans-serif;
}

main {
  width: min(1180px, calc(100% - 48px));
  min-height: 100vh;
  margin: 0 auto;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
}

.masthead,
footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.masthead {
  min-height: 110px;
}

.wordmark {
  color: var(--paper);
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.8;
  text-decoration: none;
}

.wordmark span {
  color: var(--signal);
}

.edition,
.eyebrow,
.label,
footer {
  font-family: "Courier New", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.edition,
.eyebrow,
.label,
footer {
  color: var(--muted);
}

.hero {
  align-self: center;
  max-width: 980px;
  padding: 9vh 0;
}

.eyebrow {
  margin: 0 0 1.8rem;
  color: var(--signal);
}

h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(4rem, 11vw, 9.5rem);
  font-weight: 800;
  letter-spacing: -0.075em;
  line-height: 0.82;
  text-wrap: balance;
}

.summary {
  max-width: 510px;
  margin: 3rem 0 0 auto;
  padding-left: 1.2rem;
  border-left: 4px solid var(--signal);
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.35rem);
  line-height: 1.5;
}

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

.status article {
  min-height: 125px;
  padding: 1.5rem 0;
}

.status article + article {
  padding-left: 2rem;
  border-left: 1px solid var(--line);
}

.label {
  margin: 0 0 2rem;
}

.value {
  margin: 0;
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.online span {
  display: inline-block;
  width: 0.55em;
  height: 0.55em;
  margin-right: 0.55em;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 16px rgba(240, 79, 47, 0.7);
}

footer {
  min-height: 82px;
  border-bottom: 0;
}

.build {
  color: var(--paper);
}

@media (max-width: 700px) {
  main {
    width: min(100% - 30px, 1180px);
  }

  .masthead {
    min-height: 86px;
  }

  .edition {
    max-width: 90px;
    text-align: right;
  }

  .hero {
    padding: 12vh 0;
  }

  h1 {
    font-size: clamp(3.6rem, 20vw, 6rem);
  }

  .summary {
    margin-top: 2.5rem;
  }

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

  .status article {
    min-height: 100px;
  }

  .status article + article {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .label {
    margin-bottom: 1rem;
  }
}
