/* Standalone "Why ChoreTracking" page. Kept in an external file (not inline) so it
   satisfies the app's strict Content-Security-Policy (style-src 'self'). */
:root {
  color-scheme: dark;
  --bg: #0f1115;
  --panel: #171a21;
  --text: #e7e9ee;
  --muted: #a3a9b5;
  --accent: #6ea8fe;
  --border: #262b34;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--text);
  /* Match the app: Inter/system sans for body, Georgia serif for headings. */
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

.eyebrow {
  margin: 0 0 28px;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.eyebrow a {
  color: var(--muted);
  text-decoration: none;
}

.eyebrow a:hover {
  color: var(--text);
}

h1 {
  margin: 0 0 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.1rem;
  line-height: 1.1;
  letter-spacing: 0;
}

article p {
  margin: 0 0 20px;
  font-size: 1.08rem;
  color: var(--text);
}

.cta {
  margin-top: 40px;
  padding-top: 26px;
  border-top: 1px solid var(--border);
}

.cta a {
  display: inline-block;
  background: var(--accent);
  color: #0b1020;
  font-weight: 600;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 10px;
}

.cta a:hover {
  filter: brightness(1.06);
}

/* Shared styles for the guide/content pages (split-housework-fairly, mental-load, etc.) */
.lead {
  font-size: 1.2rem;
  color: var(--muted);
  margin: 0 0 28px;
}

article h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  line-height: 1.2;
  margin: 38px 0 14px;
}

article h3 {
  font-size: 1.08rem;
  margin: 26px 0 8px;
  color: #fff;
}

article ul {
  margin: 0 0 20px;
  padding-left: 22px;
}

article li {
  margin: 0 0 10px;
  font-size: 1.08rem;
}

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

.related {
  margin-top: 44px;
  padding-top: 26px;
  border-top: 1px solid var(--border);
}

.related h2 {
  font-size: 1.05rem;
  font-family: inherit;
  color: var(--muted);
  letter-spacing: 0.02em;
  margin: 0 0 12px;
}

.related ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.related li {
  margin: 0 0 8px;
}

.related a {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
}

.related a:hover {
  color: #fff;
}

@media (max-width: 480px) {
  .wrap {
    padding: 40px 18px 64px;
  }
  h1 {
    font-size: 1.6rem;
  }
  article p {
    font-size: 1.02rem;
  }
}
