:root {
  --leaf: #4f8955;
  --clay: #9b6844;
  --ink: #2b241f;
  --paper: #fffaf0;
  --line: rgba(101, 82, 58, 0.24);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 15%, rgba(79, 137, 85, 0.22), transparent 34%),
    radial-gradient(circle at 82% 82%, rgba(155, 104, 68, 0.28), transparent 38%),
    linear-gradient(135deg, #f6efe2, #ead8bc);
}

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

.panel {
  width: min(680px, 100%);
  padding: clamp(28px, 6vw, 52px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 250, 240, 0.86);
  box-shadow: 0 24px 70px rgba(43, 36, 31, 0.16);
  text-align: center;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--leaf);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 14px;
  font-size: clamp(32px, 6vw, 54px);
  line-height: 1.05;
}

p {
  margin: 0 auto 24px;
  max-width: 48ch;
  color: rgba(43, 36, 31, 0.74);
  font-size: 18px;
  line-height: 1.55;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 999px;
  color: #fffaf0;
  background: linear-gradient(135deg, var(--leaf), var(--clay));
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(79, 61, 39, 0.22);
}

.button:hover {
  transform: translateY(-1px);
}
