:root {
  --ink: #16211f;
  --muted: #5f6d68;
  --line: #dce5df;
  --teal: #167f7b;
  --gold: #f0c85a;
  --rose: #b95068;
  --paper: #fbfcf9;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    linear-gradient(120deg, rgba(22, 127, 123, .16), transparent 42%),
    linear-gradient(240deg, rgba(185, 80, 104, .15), transparent 44%),
    #eef5f1;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.splash-shell {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 28px;
}

.splash-hero {
  width: min(920px, 100%);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 24px 70px rgba(35, 51, 48, .16);
  padding: clamp(28px, 6vw, 68px);
}

.brand-line {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: var(--teal);
  font-weight: 900;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  background: var(--teal);
  color: #ffffff;
}

.eyebrow {
  margin: 42px 0 10px;
  color: var(--rose);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.4rem, 7vw, 5.8rem);
  line-height: .95;
  letter-spacing: 0;
}

.lede {
  max-width: 660px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.6;
}

.status-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.status-strip span {
  border: 1px solid #d8e2dc;
  border-radius: 999px;
  background: var(--paper);
  padding: 9px 12px;
  color: #284a43;
  font-size: .88rem;
  font-weight: 800;
}

.launch-note {
  margin: 34px 0 0;
  color: #6e4810;
  font-weight: 900;
}
