:root {
  color-scheme: light;
  --ink: #16151c;
  --muted: #5f6070;
  --green: #2f8f3a;
  --purple: #6f2388;
  --line: #d8dae2;
  --surface: #f7f8fb;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(120deg, rgba(47, 143, 58, 0.14), transparent 34%),
    linear-gradient(300deg, rgba(111, 35, 136, 0.14), transparent 38%),
    var(--surface);
}

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

.intro {
  width: min(100%, 920px);
}

.logo {
  display: block;
  width: clamp(132px, 24vw, 220px);
  height: auto;
  margin-bottom: 34px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(2.4rem, 7vw, 5.7rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.lede {
  max-width: 680px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.status {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  width: fit-content;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.95rem;
}

.status strong {
  color: var(--purple);
}

@media (max-width: 640px) {
  .shell {
    place-items: start;
    padding-top: 36px;
  }

  .logo {
    margin-bottom: 28px;
  }
}
