:root {
  --bg: #0b0b0c;
  --fg: #f5f5f5;
  --muted: #9aa0a6;
  --accent: #8ab4f8;
}

* { box-sizing: border-box; }

html, body { margin: 0; }

body {
  min-height: 100vh;
  display: flex;
  background: var(--bg);
  color: var(--fg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* margin:auto centers the content when short, and lets it scroll (no top clip)
   when the page is taller than the viewport. */
.wrap { margin: auto; text-align: center; padding: 3rem 2rem; }

/* h1 wraps the wordmark for semantic/SEO structure without altering layout. */
.brand { margin: 0; font-weight: normal; line-height: 0; }

/* P1TSTOP wordmark logo (matches app.p1tstop.com); 380x80 SVG, scales on narrow screens. */
.mark { width: min(380px, 78vw); height: auto; display: block; margin: 0 auto; }

.tagline { margin: 1rem 0 1.2rem; color: var(--muted); }

.lede {
  max-width: 34rem;
  margin: 0 auto 1.4rem;
  color: var(--muted);
  line-height: 1.5;
}

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

.links a:hover { border-bottom-color: var(--accent); }

.faq {
  max-width: 40rem;
  margin: 3rem auto 0;
  text-align: left;
}

.faq h2 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin: 0 0 1.5rem;
}

.faq h3 {
  font-size: 1.05rem;
  margin: 1.5rem 0 0.4rem;
}

.faq p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.faq a { color: var(--accent); text-decoration: none; }
.faq a:hover { text-decoration: underline; }
