/* Roundup marketing pages — Forest palette + Fraunces (display) + DM Sans (body). */

:root {
  --bg: #faf8f3;
  --surface: #f0ede3;
  --text: #1f1a14;
  --muted: #6b655b;
  --brand: #2f6e4f;
  --brand-dark: #1f4a35;
  --accent: #e8a547;
  --divider: #e5e0d5;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 2px;
}

a:hover {
  color: var(--brand-dark);
}

header {
  border-bottom: 1px solid var(--divider);
  padding: 24px 16px;
  text-align: center;
}

header .wordmark {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 1px;
  color: var(--brand);
  text-decoration: none;
  display: inline-block;
}

main {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px 96px;
}

h1 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.1;
  margin: 0 0 8px;
}

h2 {
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.2px;
  margin: 32px 0 8px;
}

p,
ul,
ol {
  margin: 12px 0;
}

ul,
ol {
  padding-left: 24px;
}

li {
  margin: 6px 0;
}

.muted {
  color: var(--muted);
  font-size: 14px;
}

.placeholder {
  background: #fff5e0;
  border-left: 4px solid var(--accent);
  padding: 12px 16px;
  margin: 16px 0;
  font-size: 14px;
  color: var(--text);
}

footer {
  border-top: 1px solid var(--divider);
  padding: 32px 16px;
  text-align: center;
  font-size: 14px;
  color: var(--muted);
}

footer a {
  margin: 0 8px;
}

.tagline {
  font-family: "Fraunces", Georgia, serif;
  font-style: italic;
  color: var(--muted);
  font-size: 18px;
  margin-top: 4px;
}
