/*
 * Styles for the static content pages (/faq, /vase-mode-3d-printing, …).
 *
 * These pages are plain HTML served straight from public/ — no bundler, no
 * React, no WebGL. That is deliberate: they must be readable by crawlers that
 * do not run JavaScript (GPTBot, ClaudeBot, PerplexityBot all fall in that
 * group), they must render on any device, and they must not be able to break
 * the designer. Keep it that way.
 */

:root {
  --bg: #0c0a09;      /* stone-950, same as the app */
  --fg: #e7e5e4;
  --fg-strong: #fafaf9;
  --fg-muted: #a8a29e;
  --line: #292524;
  --accent: #fb923c;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.wrap { max-width: 760px; margin: 0 auto; padding: 28px 22px 80px; }

h1, h2, h3 { font-family: 'Space Grotesk', system-ui, sans-serif; color: var(--fg-strong); letter-spacing: -0.4px; }
h1 { font-size: 38px; line-height: 1.15; letter-spacing: -1px; margin: 8px 0 16px; }
h2 { font-size: 25px; margin: 44px 0 12px; }
h3 { font-size: 19px; margin: 28px 0 6px; }

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

.lead { font-size: 19px; color: #d6d3d1; }
.muted { color: var(--fg-muted); font-size: 15px; }

.brand {
  display: inline-block;
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 22px; font-weight: 700; letter-spacing: -0.5px;
  background: linear-gradient(90deg, #fb923c, #ec4899);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

nav.top { display: flex; gap: 18px; align-items: center; padding-bottom: 8px; flex-wrap: wrap; }
nav.top a.crumb { color: var(--fg-muted); font-size: 15px; }

.cta {
  display: inline-block;
  margin: 8px 0 4px;
  padding: 13px 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, #fb923c, #f97316);
  color: #1c1917 !important;
  font-weight: 700;
  text-decoration: none !important;
}

.card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px 22px;
  margin: 28px 0;
  background: #12100f;
}

table { width: 100%; border-collapse: collapse; margin: 18px 0; font-size: 15px; display: block; overflow-x: auto; }
th, td { text-align: left; padding: 9px 12px; border-bottom: 1px solid var(--line); }
th { color: var(--fg-strong); font-weight: 600; white-space: nowrap; }

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.9em;
  background: #1c1917;
  padding: 2px 6px;
  border-radius: 6px;
  color: #fdba74;
}

footer.site {
  margin-top: 64px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--fg-muted);
  font-size: 14px;
}
footer.site a { color: var(--fg-muted); }

img.hero { width: 100%; height: auto; border-radius: 16px; margin: 20px 0 8px; }

@media (max-width: 560px) {
  h1 { font-size: 30px; }
  h2 { font-size: 22px; }
  body { font-size: 16px; }
}
