/* Shared styles for Wend's static SEO landing pages. Mirrors the app's brand
   tokens (warm paper, sage, Geist + Newsreader) so these pages feel like part of
   the product even though they're plain HTML served alongside the Angular app. */
@import url('https://fonts.googleapis.com/css2?family=Geist:wght@400;500;600&family=Newsreader:ital,opsz,wght@1,6..72,400&display=swap');

:root {
  --bg: #fbfaf6;
  --ink: #1c1b17;
  --ink-2: #4d4b43;
  --ink-3: #8b887e;
  --sage: #5c7f3a;
  --sage-ink: #344f17;
  --line: rgba(28, 27, 23, 0.1);
  --sans: "Geist", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  --serif: "Newsreader", "Iowan Old Style", Georgia, serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink-2);
  font-family: var(--sans);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: 680px;
  margin: 0 auto;
  padding: 28px 22px 64px;
}

/* Wordmark: italic serif "w" in sage-ink, "end" in sans, sage dot. */
.brand {
  display: inline-flex;
  align-items: baseline;
  text-decoration: none;
  color: var(--ink);
  font-size: 22px;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
}
.brand .lead {
  font-family: var(--serif);
  font-style: italic;
  color: var(--sage-ink);
  font-size: 1.32em;
  margin-right: 0.06em;
}
.brand .tail { font-weight: 500; }
.brand .dot { color: var(--sage); font-weight: 500; }

h1 {
  font-size: 34px;
  line-height: 1.15;
  letter-spacing: -0.022em;
  color: var(--ink);
  font-weight: 600;
  margin: 0 0 20px;
}
h2 {
  font-size: 21px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--ink);
  font-weight: 600;
  margin: 36px 0 10px;
}
p { margin: 0 0 16px; }
strong { color: var(--ink); font-weight: 600; }

.lede { font-size: 19px; color: var(--ink); }

ul { margin: 0 0 16px; padding-left: 22px; }
li { margin-bottom: 8px; }

.cta {
  display: inline-block;
  margin-top: 14px;
  background: var(--sage-ink);
  color: var(--bg);
  text-decoration: none;
  font-weight: 500;
  font-size: 17px;
  padding: 14px 26px;
  border-radius: 12px;
  transition: background 160ms ease, transform 160ms ease;
}
.cta:hover { background: var(--sage); transform: translateY(-1px); }

.disclaimer {
  margin-top: 40px;
  padding: 16px 18px;
  background: rgba(92, 127, 58, 0.06);
  border: 0.5px solid var(--line);
  border-radius: 12px;
  font-size: 14px;
  color: var(--ink-3);
}

footer {
  margin-top: 44px;
  padding-top: 22px;
  border-top: 0.5px solid var(--line);
  font-size: 13px;
  color: var(--ink-3);
}
footer a { color: inherit; text-decoration: none; }
footer a:hover { color: var(--ink-2); }
.foot-links { margin-top: 8px; display: flex; flex-wrap: wrap; gap: 14px; }

@media (max-width: 560px) {
  h1 { font-size: 28px; }
  h2 { font-size: 19px; }
  body { font-size: 16px; }
}
