/* Criers — shared site styles. Mirrors the app's visual system:
   pure white/black canvases, hairline dividers, #2A7BCA accent,
   no gradients, no heavy shadows, 12px radii. */

:root {
  color-scheme: light dark;
  --canvas: #ffffff;
  --text: #000000;
  --text2: rgba(0, 0, 0, 0.55);
  --text3: rgba(0, 0, 0, 0.32);
  --hairline: rgba(0, 0, 0, 0.08);
  --surface2: #f0f0f0;
  --accent: #2a7bca;
}

@media (prefers-color-scheme: dark) {
  :root {
    --canvas: #000000;
    --text: #ffffff;
    --text2: rgba(255, 255, 255, 0.55);
    --text3: rgba(255, 255, 255, 0.3);
    --hairline: rgba(255, 255, 255, 0.1);
    --surface2: #1c1c1c;
  }
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--canvas);
  color: var(--text);
  font-family: "Inter", -apple-system, system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.tagline {
  font-family: "New York", ui-serif, Georgia, serif;
  font-style: italic;
  font-size: 17px;
  color: var(--text2);
  margin: 0;
}

/* Landing */

.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 24px;
  text-align: center;
}

.hero img.logo { width: 76px; height: auto; display: block; }

.hero h1 {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.2px;
  margin: 0;
}

.soon {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text2);
  background: var(--surface2);
  padding: 8px 16px;
  border-radius: 12px;
}

.hero footer {
  position: absolute;
  bottom: 28px;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text3);
}

.hero footer .row {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.hero footer a { color: var(--text2); font-weight: 500; }

/* Document pages (privacy, terms) */

.doc {
  max-width: 640px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.doc .home {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 40px;
}

.doc .home img { width: 24px; height: auto; }

.doc h1 { font-size: 30px; font-weight: 700; letter-spacing: 0.2px; margin: 0 0 4px; }

.doc .updated { font-size: 13px; color: var(--text3); margin: 0 0 12px; }

.doc h2 {
  font-size: 16px;
  font-weight: 700;
  margin: 36px 0 8px;
  padding-top: 20px;
  border-top: 0.5px solid var(--hairline);
}

.doc p, .doc li { color: var(--text); }
.doc .muted { color: var(--text2); }

.doc footer {
  margin-top: 56px;
  padding-top: 20px;
  border-top: 0.5px solid var(--hairline);
  font-size: 13px;
  color: var(--text3);
}
