:root {
  color-scheme: light;
  --ink: #101418;
  --muted: #5d6670;
  --line: #dbe2e8;
  --sky: #dff2ff;
  --green: #0c7f62;
  --violet: #7048d8;
  --paper: #f8faf9;
}

* {
  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(135deg, rgba(223, 242, 255, 0.8), rgba(248, 250, 249, 0.95)),
    var(--paper);
}

.shell {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 40px;
}

.hero {
  width: min(980px, 100%);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(52px, 8vw, 104px);
  line-height: 0.95;
}

.lead {
  max-width: 720px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.55;
}

.status {
  width: fit-content;
  max-width: 100%;
  margin-top: 34px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--violet);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-weight: 700;
}

@media (max-width: 720px) {
  .shell {
    padding: 26px;
  }

  .lead {
    font-size: 18px;
  }
}

