:root {
  color-scheme: light;
  --bg: #fbf8f1;
  --ink: #1f1f1c;
  --muted: #5b574e;
  --teal: #2d705c;
  --mint: #d8efe5;
  --gold: #e8ae2d;
  --paper: #fff5da;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(180deg, #f6efdf 0%, var(--bg) 52%, #e2f3ec 100%);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

a {
  color: var(--teal);
  font-weight: 700;
}

.page {
  width: min(940px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 56px 0;
}

.hero {
  min-height: calc(100vh - 112px);
  display: grid;
  align-content: center;
  gap: 18px;
}

.mark {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: var(--teal);
  color: var(--paper);
  font-weight: 800;
  letter-spacing: 0;
  box-shadow: 0 18px 48px rgba(45, 112, 92, 0.22);
}

.eyebrow {
  margin: 0;
  color: var(--teal);
  font-weight: 800;
}

h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(38px, 7vw, 76px);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin: 34px 0 8px;
  font-size: 24px;
}

p,
li {
  max-width: 760px;
  font-size: 20px;
  color: var(--muted);
}

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

.links a {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 18px;
  border: 2px solid rgba(45, 112, 92, 0.28);
  border-radius: 8px;
  background: rgba(255, 245, 218, 0.72);
  text-decoration: none;
}

.text {
  padding-top: 72px;
  padding-bottom: 72px;
}

.text h1 {
  font-size: clamp(36px, 6vw, 64px);
}

.small {
  margin-top: 44px;
  font-size: 16px;
}
