/* Life Maid Easier — QBO registration site. Single shared stylesheet.
   Centered single-column layout: single-column at all widths, so the
   <=640px reflow requirement (AC-7) holds by construction. No fixed
   widths wider than the viewport; border-box sizing; wrapped long words. */

*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --ink: #1c2b33;
  --muted: #54707d;
  --accent: #0a6b57;
  --rule: #d9e2e6;
  --bg: #f7faf9;
  --maxw: 44rem;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 16px/1.6 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  overflow-wrap: break-word;
}

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 1.5rem 1.25rem 3rem;
}

header.site {
  border-bottom: 1px solid var(--rule);
}

header.site .wrap {
  padding-bottom: 1rem;
}

.brand {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
}

.tagline {
  margin: 0.25rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

h1 {
  font-size: 1.6rem;
  line-height: 1.25;
  margin: 0 0 0.75rem;
}

h2 {
  font-size: 1.2rem;
  margin: 1.75rem 0 0.5rem;
}

p,
li {
  max-width: 100%;
}

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

a:focus-visible,
.cta:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

.updated {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 0;
}

.cta {
  display: inline-block;
  margin: 1rem 0;
  padding: 0.7rem 1.1rem;
  background: var(--accent);
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

img {
  max-width: 100%;
  height: auto;
}

footer.site {
  border-top: 1px solid var(--rule);
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--muted);
}

footer.site nav a {
  display: inline-block;
  margin-right: 1rem;
  white-space: nowrap;
}
