/* Homeabouts: warm, plain, mobile first. Its own look, on purpose nothing like a city website. */

:root {
  --bg: #fbf7f1;
  --card: #ffffff;
  --ink: #1f2a2e;
  --muted: #5c6b70;
  --accent: #c2552b;
  --on-accent: #ffffff;
  --accent-ink: #8f3a1b;
  --accent-soft: #f7e6dc;
  --line: #e8dfd5;
  --focus: #2b6cb0;
  --radius: 14px;
  --max: 42rem;
  color-scheme: light dark;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #171a1c;
    --card: #20262a;
    --ink: #eef1f2;
    --muted: #a6b0b5;
    --accent: #e58a63;
    --on-accent: #1a1310; /* dark text on the light-orange button: about 7:1, white was 2.6:1 */
    --accent-ink: #f3b89f;
    --accent-soft: #3a2a22;
    --line: #313a40;
    --focus: #7db3ff;
  }
}
:root[data-theme="dark"] {
  --bg: #171a1c; --card: #20262a; --ink: #eef1f2; --muted: #a6b0b5;
  --accent: #e58a63; --on-accent: #1a1310; --accent-ink: #f3b89f; --accent-soft: #3a2a22; --line: #313a40; --focus: #7db3ff;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.5;
  padding: 0 16px calc(24px + env(safe-area-inset-bottom));
}
h1, h2, h3 { font-family: Georgia, "Iowan Old Style", "Times New Roman", serif; line-height: 1.15; margin: 0 0 .5rem; letter-spacing: -0.01em; }
h1 { font-size: clamp(1.75rem, 5.5vw, 2.5rem); }
h2 { font-size: clamp(1.35rem, 4vw, 1.7rem); }
h3 { font-size: 1.15rem; }
p { margin: 0 0 .75rem; }
a { color: var(--accent-ink); }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--focus); outline-offset: 2px;
}

.skip { position: absolute; left: -999px; top: 8px; background: var(--card); padding: 8px 12px; border-radius: 8px; }
.skip:focus { left: 16px; z-index: 10; }

.top, main, .foot { max-width: var(--max); margin: 0 auto; }
.top { padding: 20px 0 8px; }
.brand { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; color: var(--ink); }
.mark { width: 30px; height: 30px; color: var(--accent); }
.wordmark { font-family: Georgia, "Iowan Old Style", serif; font-weight: 700; font-size: 1.35rem; letter-spacing: -0.01em; }
.tagline { color: var(--muted); margin: 4px 0 0; font-size: .95rem; }

.hero { padding: 20px 0 8px; }
.sub { font-size: 1.1rem; color: var(--ink); }
.idea { font-size: 1.05rem; background: var(--accent-soft); border-radius: var(--radius); padding: 12px 14px; margin: 14px 0 6px; }
.label { color: var(--muted); font-size: .9rem; margin: 0 0 14px; }
.cta { margin: 0 0 8px; }

.examples-wrap { padding: 22px 0 6px; }
.examples { display: grid; gap: 12px; align-items: start; }
@media (min-width: 720px) { .examples { grid-template-columns: repeat(3, 1fr); } }
.card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 14px 16px; }
.card p:last-child { margin-bottom: 0; }
.eyebrow { text-transform: uppercase; letter-spacing: .08em; font-size: .72rem; color: var(--accent-ink); font-weight: 700; margin: 0 0 6px; }
/* The three example cards get equal weight, so the page favors neither ad's framing (Fable review of the live page, 2026-09-25). */
.meta { color: var(--muted); font-size: .92rem; }
.fine { color: var(--muted); font-size: .85rem; margin: 10px 0 0; }

.signup { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 16px 12px; margin-top: 22px; scroll-margin-top: 12px; }
.promise { color: var(--muted); margin-bottom: 12px; }
.field { margin: 0 0 16px; padding: 0; border: 0; min-width: 0; }
label, legend { display: block; font-weight: 600; margin: 0 0 6px; }
legend { padding: 0; }
.opt { font-weight: 400; color: var(--muted); }
.hint { color: var(--muted); font-size: .88rem; margin: 6px 0 0; }
input[type="email"], input[type="text"], input:not([type]), textarea {
  width: 100%; font: inherit; color: var(--ink); background: var(--bg);
  border: 1px solid var(--line); border-radius: 10px; padding: 12px 12px; min-height: 48px;
}
textarea { resize: vertical; }
.choice { display: flex; align-items: center; gap: 12px; font-weight: 500; border: 1px solid var(--line); border-radius: 10px; padding: 11px 12px; margin: 0 0 8px; min-height: 48px; cursor: pointer; background: var(--bg); }
.choice input { width: 22px; height: 22px; margin: 0; accent-color: var(--accent); flex: 0 0 auto; }
.choice:has(input:checked) { border-color: var(--accent); background: var(--accent-soft); }
.choice-check { font-weight: 500; }

.hp { position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden; }

.btn { display: inline-block; font: inherit; font-weight: 700; text-decoration: none; text-align: center; border-radius: 12px; padding: 13px 22px; min-height: 48px; border: 2px solid var(--accent); color: var(--accent-ink); background: transparent; cursor: pointer; }
.btn-primary { background: var(--accent); color: var(--on-accent); }
.btn[disabled] { opacity: .6; cursor: wait; }
.submit-row { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 16px; margin: 6px 0 10px; }
.submit-row .btn { flex: 1 1 100%; }
@media (min-width: 520px) { .submit-row .btn { flex: 0 0 auto; } }
.beside { color: var(--muted); font-size: .9rem; margin: 0; }
.error { background: #fde8e6; color: #8a1c12; border-radius: 10px; padding: 10px 12px; }
@media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) .error { background: #4a1f1a; color: #ffd7d2; } }

.thanks h2 { margin-top: 4px; }
.pp-link { margin-top: 14px; }

.foot { color: var(--muted); font-size: .88rem; padding: 26px 0 0; }

/* Tester-card mode: email only, the questions are skipped. After the sign-up, no paid-session box (they just did one),
   no "20 seconds" line, and no Park Plaza link (it would pre-empt the day-7 text link). */
body.mode-card #idea-full, body.mode-card #zip-field, body.mode-card #bill-field, body.mode-card #council-field, body.mode-card .examples-wrap, body.mode-card .cta,
body.mode-card #su-p, body.mode-card .choice-check, body.mode-card .pp-link { display: none; }
body.mode-card #idea-card { display: block; }

@media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }
