/* Dark Forest Studios — shared styles. Plain CSS, no build step. */

*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #0a0d0a;
  --surface: #12160f;
  --ink: #e9ece8;
  --muted: #969d95;
  --line: rgba(255, 255, 255, 0.09);
  --accent: #69b98a;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a:hover {
  text-decoration: underline;
}

.wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.brand {
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.site-header nav a {
  color: var(--muted);
  margin-left: 20px;
  font-size: 15px;
}

.site-header nav a:hover {
  color: var(--ink);
  text-decoration: none;
}

/* Hero */
.hero {
  padding: 64px 0 8px;
}

h1 {
  font-size: 44px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}

.lead {
  font-size: 20px;
  color: var(--muted);
  margin: 0;
}

/* Sections */
main {
  padding-bottom: 24px;
}

h2 {
  font-size: 27px;
  letter-spacing: -0.01em;
  margin: 36px 0 12px;
}

p {
  margin: 0 0 16px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 10px;
}

.card {
  margin: 44px 0;
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.card h2 {
  margin-top: 0;
}

.card .status {
  color: var(--muted);
  font-size: 15px;
}

.links a {
  margin-right: 20px;
  font-size: 15px;
}

.card ul {
  margin: 14px 0 0;
  padding-left: 22px;
}

.card li {
  margin-bottom: 8px;
}

/* Article pages (privacy / support) */
.article {
  padding: 48px 0 8px;
}

.article h1 {
  font-size: 34px;
  margin-bottom: 8px;
}

.updated {
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 28px;
}

.article ul {
  padding-left: 22px;
}

.article li {
  margin-bottom: 8px;
}

.faq-q {
  font-weight: 700;
  color: var(--ink);
  margin: 26px 0 4px;
}

.note {
  color: var(--muted);
  font-size: 14px;
}

/* Footer */
.site-footer {
  margin-top: 56px;
  padding: 28px 0 48px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.site-footer p {
  margin: 0 0 6px;
}

.fine {
  font-size: 13px;
}

@media (max-width: 560px) {
  h1 {
    font-size: 34px;
  }
  .hero {
    padding: 44px 0 4px;
  }
  .card {
    padding: 24px;
  }
}
