:root {
  --ink: #111820;
  --muted: #5f6872;
  --cream: #f5ecdf;
  --paper: #fffdf8;
  --gold: rgba(215, 180, 106, 0.26);
  --green: rgba(36, 79, 73, 0.14);
}

* { box-sizing: border-box; }

html, body { min-height: 100%; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 22% 18%, var(--gold), transparent 31rem),
    radial-gradient(circle at 82% 78%, var(--green), transparent 30rem),
    linear-gradient(135deg, var(--paper) 0%, var(--cream) 100%);
}

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

section {
  width: min(900px, 100%);
  text-align: center;
}

h1 {
  margin: 0;
  font-size: clamp(54px, 9vw, 104px);
  line-height: 0.94;
  letter-spacing: -0.085em;
  text-wrap: balance;
}

p {
  margin: 30px auto 0;
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(19px, 2.2vw, 25px);
  line-height: 1.42;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 38px;
  min-height: 64px;
  padding: 0 40px;
  border-radius: 999px;
  background: #24584f;
  color: #fff;
  text-decoration: none;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 800;
  letter-spacing: -0.035em;
  box-shadow: 0 18px 42px rgba(36, 88, 79, 0.22);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  background: #1f4c45;
  box-shadow: 0 22px 48px rgba(36, 88, 79, 0.26);
}

.button:focus-visible {
  outline: 3px solid rgba(36, 88, 79, 0.32);
  outline-offset: 4px;
}
