:root {
  --ink: #1d1d1f;
  --muted: #62656d;
  --line: #e5e7eb;
  --blue: #0b38ad;
  --red: #c80d15;
  --green: #087e36;
  --purple: #6a1198;
  --orange: #ee9b00;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: #fff;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

body {
  min-height: 100vh;
  margin: 0;
  background: linear-gradient(180deg, #fff 0%, #fff 72%, #fafafa 100%);
}

main {
  display: flex;
  min-height: calc(100vh - 72px);
  flex-direction: column;
  align-items: center;
  padding: clamp(3.25rem, 8vw, 6.5rem) 1.5rem clamp(3rem, 7vw, 5rem);
  text-align: center;
}

.brand {
  width: min(790px, 100%);
}

.wordmark {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
  mix-blend-mode: multiply;
}

.tagline {
  margin: clamp(1.25rem, 3vw, 2rem) 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 3.5vw, 2.45rem);
  font-style: italic;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.color-line {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.55rem;
  width: min(310px, 66vw);
  margin: clamp(3rem, 8vw, 5.75rem) auto;
}

.color-line span {
  height: 4px;
  border-radius: 999px;
}

.color-line span:nth-child(1) { background: var(--blue); }
.color-line span:nth-child(2) { background: var(--red); }
.color-line span:nth-child(3) { background: var(--green); }
.color-line span:nth-child(4) { background: var(--purple); }
.color-line span:nth-child(5) { background: var(--orange); }

.announcement {
  width: min(760px, 100%);
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.4rem, 12vw, 8.2rem);
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 0.95;
}

.announcement p {
  max-width: 680px;
  margin: clamp(1.75rem, 4vw, 2.5rem) auto 0;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.18rem, 2.5vw, 1.45rem);
  line-height: 1.65;
}

.updates {
  margin: clamp(3rem, 7vw, 5rem) 0 0;
  color: #73767d;
  font-size: 0.95rem;
  line-height: 1.5;
}

footer {
  display: grid;
  min-height: 72px;
  place-items: center;
  border-top: 1px solid var(--line);
  color: #777a81;
  font-size: 0.85rem;
}

@media (max-width: 600px) {
  main {
    min-height: calc(100vh - 64px);
    padding-top: 2.75rem;
  }

  .color-line {
    margin-top: 3.25rem;
    margin-bottom: 3.25rem;
  }

  footer {
    min-height: 64px;
  }
}
