:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #20201d;
  background: #f6f2eb;
  --accent: #1f6f68;
  --panel: #fffaf2;
  --muted: #69665e;
  --line: #dfd8cb;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

a {
  color: var(--accent);
  font-weight: 800;
}

.page {
  width: min(900px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0;
}

.hero,
.document {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: clamp(24px, 5vw, 52px);
  box-shadow: 0 18px 50px rgba(54, 43, 31, 0.12);
}

.eyebrow {
  margin: 0 0 12px;
  color: #154d49;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin: 0 0 18px;
  font-size: clamp(34px, 6vw, 64px);
  line-height: 0.98;
}

h2 {
  margin: 30px 0 10px;
  font-size: 22px;
}

p {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.actions a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 8px;
  background: var(--accent);
  color: #fffaf2;
  text-decoration: none;
}
