/* Forgenta Answers — shared styling for the static answer pages.
   Deliberately one small stylesheet with no JS: these pages exist to be
   crawled and read fast, and they must render identically whether or not the
   app bundle ever loads. Brand values mirror marketing/README.md. */

:root {
  --bg: #050505;
  --fg: #DDE4EE;
  --muted: #9AA4B2;
  --gold: #C4973A;
  --line: #1C1C1C;
  --card: #0C0C0C;
}

* { box-sizing: border-box; }

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

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

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

header.wrap { padding-top: 28px; padding-bottom: 8px; }

.brand {
  font-family: Outfit, Inter, sans-serif;
  font-weight: 800;
  letter-spacing: 0.18em;
  font-size: 14px;
  color: var(--gold);
  text-decoration: none;
}

.kicker { margin: 4px 0 0; color: var(--muted); font-size: 13px; }

h1 {
  font-family: Outfit, Inter, sans-serif;
  font-weight: 800;
  font-size: 2rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 24px 0 12px;
}

h2 {
  font-family: Outfit, Inter, sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  margin: 36px 0 10px;
  color: var(--fg);
}

p { margin: 0 0 14px; }

.lede { font-size: 1.08rem; color: var(--fg); }

strong { color: #fff; }

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

ul, ol { margin: 0 0 16px; padding-left: 22px; }
li { margin-bottom: 8px; }

table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 20px;
  font-size: 15px;
}
th, td {
  text-align: left;
  padding: 9px 10px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
th { color: var(--muted); font-weight: 500; font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; }
td.num { text-align: right; font-variant-numeric: tabular-nums; }

.cta {
  margin: 40px 0 8px;
  padding: 20px;
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
}
.cta p:last-child { margin-bottom: 0; }

.btn {
  display: inline-block;
  margin-top: 6px;
  background: var(--gold);
  color: #0A0A0A;
  font-weight: 600;
  font-size: 15px;
  padding: 10px 18px;
  text-decoration: none;
}

.more { margin-top: 40px; }

.foot {
  margin-top: 48px;
  padding: 20px 20px 40px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}
.foot a { color: var(--muted); }
.fine { color: #6B7280; }

@media (min-width: 700px) {
  h1 { font-size: 2.5rem; }
}
