:root {
  color-scheme: light;
  --ink: #12241f;
  --muted: #5d6f68;
  --paper: #fbfdf8;
  --surface: #eef5eb;
  --line: #d6e2d4;
  --brand: #24483e;
  --accent: #8ba683;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

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

.shell {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0;
}

.hero {
  padding: 48px 0 40px;
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  line-height: 1.1;
}

h1 {
  max-width: 780px;
  font-size: clamp(2.75rem, 7vw, 5.25rem);
}

h2 {
  margin-bottom: 14px;
  font-size: 1.35rem;
}

.lede {
  max-width: 680px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.25rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--brand);
  border-radius: 8px;
  background: var(--brand);
  color: #fff;
  text-decoration: none;
}

.button.secondary {
  background: transparent;
  color: var(--brand);
}

.panel {
  margin-top: 24px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.panel p,
.document p {
  max-width: 760px;
  margin: 0 0 14px;
}

.panel p:last-child {
  margin-bottom: 0;
}

.compact {
  background: transparent;
}

.document {
  max-width: 820px;
}

.document h1 {
  font-size: clamp(2.25rem, 6vw, 4rem);
}

.document h2 {
  margin-top: 32px;
}

.muted {
  color: var(--muted);
}

@media (max-width: 560px) {
  .shell {
    width: min(100% - 24px, 920px);
    padding: 32px 0;
  }

  .hero {
    padding-top: 24px;
  }

  .panel {
    padding: 18px;
  }
}
