:root {
  color-scheme: light;
  --bg: #eef1ec;
  --surface: rgba(252, 253, 251, 0.9);
  --text: #253029;
  --muted: #5d6e63;
  --accent: #768b67;
  --accent-soft: #e1e8db;
  --accent-alt: #d8cedf;
  --border: rgba(37, 48, 41, 0.1);
  --shadow: 0 24px 60px rgba(51, 78, 57, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  padding: 24px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at top right, rgba(216, 206, 223, 0.75), transparent 30%),
    linear-gradient(180deg, #f8faf7 0%, var(--bg) 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.page {
  width: min(100%, 860px);
  padding: clamp(30px, 5vw, 56px);
  border-radius: 32px;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
}

h1 {
  font-size: clamp(2.7rem, 7vw, 4.9rem);
  line-height: 1;
}

h2 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.lead {
  margin: 18px 0 10px;
  color: var(--muted);
  font-size: 1.2rem;
}

p,
li {
  font-size: 1.05rem;
  line-height: 1.75;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.card {
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(37, 48, 41, 0.08);
  background: #ffffff;
}

.card.accent {
  background: linear-gradient(180deg, rgba(216, 206, 223, 0.42), rgba(255, 255, 255, 0.92));
}

ul {
  margin: 0;
  padding-left: 20px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #f8fbf7;
  font-weight: 600;
  text-decoration: none;
}

.button.secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(37, 48, 41, 0.14);
}

@media (max-width: 700px) {
  .grid {
    grid-template-columns: 1fr;
  }

  .actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}
