/* JG Life Group — compliance site.
   Deliberately plain. A 10DLC vetter is checking that a real business exists
   and that specific disclosures are present, not admiring the design. */

:root {
  --ink: #16202c;
  --muted: #5a6672;
  --rule: #dde3e9;
  --bg: #ffffff;
  --accent: #1f4e6b;
  --flag-bg: #ffe8a3;
  --flag-ink: #6b4e00;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 17px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.wrap { max-width: 720px; margin: 0 auto; padding: 0 24px; }

header {
  border-bottom: 1px solid var(--rule);
  padding: 28px 0;
  margin-bottom: 40px;
}

header .wrap { display: flex; flex-wrap: wrap; gap: 16px; align-items: baseline; justify-content: space-between; }

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-decoration: none;
}

nav a {
  color: var(--muted);
  text-decoration: none;
  margin-left: 20px;
  font-size: 15px;
}
nav a:hover { color: var(--accent); text-decoration: underline; }
nav a:first-child { margin-left: 0; }

h1 { font-size: 30px; line-height: 1.25; letter-spacing: -0.02em; margin: 0 0 8px; }
h2 { font-size: 20px; margin: 36px 0 10px; letter-spacing: -0.01em; }
h3 { font-size: 17px; margin: 24px 0 6px; }

.lede { font-size: 19px; color: var(--muted); margin: 0 0 32px; }
.updated { color: var(--muted); font-size: 15px; margin: 0 0 32px; }

p, li { margin: 0 0 14px; }
ul { padding-left: 22px; }

a { color: var(--accent); }

.callout {
  border-left: 3px solid var(--accent);
  background: #f4f8fa;
  padding: 16px 20px;
  margin: 24px 0;
}
.callout p:last-child { margin-bottom: 0; }

dl.contact { margin: 0; }
dl.contact dt { font-weight: 600; margin-top: 14px; }
dl.contact dd { margin: 2px 0 0; color: var(--muted); }

/* Anything still wrapped in .fill has NOT been filled in yet. It is styled to
   be impossible to miss, on the page and in a screenshot. */
.fill {
  background: var(--flag-bg);
  color: var(--flag-ink);
  padding: 1px 6px;
  border-radius: 3px;
  font-weight: 600;
  white-space: nowrap;
}

footer {
  border-top: 1px solid var(--rule);
  margin-top: 56px;
  padding: 28px 0 48px;
  color: var(--muted);
  font-size: 15px;
}
footer a { color: var(--muted); }
footer p { margin: 0 0 8px; }

@media (max-width: 560px) {
  header .wrap { display: block; }
  nav { margin-top: 10px; display: block; }
  nav a { margin: 0 18px 0 0; }
  h1 { font-size: 26px; }
}
