:root {
  color-scheme: light;
  --ink: #122022;
  --muted: #5c6b6e;
  --line: #d8e2e3;
  --paper: #f4f8f8;
  --white: #ffffff;
  --accent: #1f9d7a;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.panel {
  width: min(100%, 720px);
  padding: 56px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(18, 32, 34, 0.12);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: 64px;
  line-height: 1;
  letter-spacing: 0;
}

.lead {
  margin: 22px 0 0;
  font-size: 24px;
  font-weight: 750;
}

.body {
  max-width: 560px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

@media (max-width: 560px) {
  .page {
    padding: 18px;
  }

  .panel {
    padding: 32px;
  }

  h1 {
    font-size: 46px;
  }

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