/* Stubby — static pages (privacy, support).
   Standalone rather than reusing styles/app.css, which styles the web
   prototype's app chrome and carries a lot this doesn't need. Tokens are
   copied from it deliberately so the pages read as the same product. */

:root {
  --bg: #0b0c10;
  --bg-raised: #14161d;
  --line: #232733;
  --text: #f2f3f7;
  --text-dim: #9aa1b1;
  --text-faint: #666d7d;
  --accent: #ff4d6d;
  --radius: 14px;
  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Inter, system-ui, sans-serif;
}

@media (prefers-color-scheme: light) {
  :root {
    --bg: #f6f6f8;
    --bg-raised: #ffffff;
    --line: #e0e2e9;
    --text: #14161d;
    --text-dim: #5c6373;
    --text-faint: #8d94a3;
    --accent: #e01e46;
  }
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.page {
  max-width: 44rem;
  margin: 0 auto;
  padding: 0 1.25rem 4rem;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
  margin-bottom: 2.5rem;
}

.wordmark {
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--text);
  text-decoration: none;
}
.wordmark span { color: var(--accent); }

header nav a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.95rem;
}
header nav a:hover { color: var(--text); }

h1 {
  font-size: clamp(1.9rem, 5vw, 2.5rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
}

h2 {
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  margin: 2.5rem 0 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

h3 {
  font-size: 1.05rem;
  margin: 1.75rem 0 0.4rem;
}

p { margin: 0 0 1rem; }

.updated {
  color: var(--text-faint);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.lede {
  font-size: 1.15rem;
  color: var(--text);
  background: var(--bg-raised);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem 1.25rem;
  margin-bottom: 2rem;
}

ul { margin: 0 0 1rem; padding-left: 1.25rem; }
li { margin-bottom: 0.5rem; }

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

strong { font-weight: 650; }

footer {
  margin-top: 4rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  color: var(--text-faint);
  font-size: 0.9rem;
}

@media (max-width: 30rem) {
  body { font-size: 16px; }
  .page { padding: 0 1rem 3rem; }
}
