/* Support- und Datenschutzseite von FAX.
   Bewusst dieselbe Anmutung wie die App: Papierfarben, Monospace für alles,
   was auf einem Blatt stünde. Kein Framework, keine Schrift von außen — die
   Seite muss auch dann laden, wenn jemand sie im Zug aufmacht, weil er
   gerade ein Fax bekommen hat, das er melden will. */
:root {
  color-scheme: light dark;
  --bg: #e8e5d3;
  --card: #f5f4ee;
  --ink: #21201e;
  --muted: #6a6862;
  --edge: #d3d0c2;
  --accent: #5c6b2e;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #171714;
    --card: #221f1c;
    --ink: #eceadf;
    --muted: #9b988d;
    --edge: #3a352f;
    --accent: #9eb259;
  }
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  padding: 48px 20px;
}
main { max-width: 720px; margin: 0 auto; }
header { text-align: center; margin-bottom: 44px; }

/* Blatt im Schacht — dieselbe Bildidee wie das App-Icon. */
.app-icon {
  width: 84px; height: 84px;
  margin: 0 auto 18px;
  background: linear-gradient(160deg, #3a382f, #1a1916);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}
.app-icon .sheet {
  position: absolute; left: 50%; top: 30%;
  width: 44px; height: 32px;
  transform: translateX(-50%);
  background: #f2f0e6;
  border-radius: 2px;
}
.app-icon .slot {
  position: absolute; left: 50%; top: 62%;
  width: 60px; height: 8px;
  transform: translateX(-50%);
  background: #0d0d0b;
  border-radius: 4px;
}

h1 { font-size: 30px; letter-spacing: 5px; font-weight: 800; }
.subtitle { color: var(--muted); font-size: 15px; margin-top: 6px; }

section {
  background: var(--card);
  border: 1px solid var(--edge);
  border-radius: 12px;
  padding: 26px 28px;
  margin-bottom: 22px;
}
h2 {
  font-size: 21px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--edge);
}
h3 { font-size: 16px; margin: 22px 0 7px; }
p, li { font-size: 15px; margin-bottom: 11px; }
ul { padding-left: 22px; }
a { color: var(--accent); }

.tldr {
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 16px;
}
/* Was auf einem Blatt stünde, steht in Monospace: Nummern, Ergebnisse. */
code, .number {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.94em;
  background: rgba(128, 128, 128, 0.13);
  padding: 1px 6px;
  border-radius: 4px;
}
.number { font-size: 1.05em; letter-spacing: 1px; font-weight: 600; }

table {
  width: 100%;
  border-collapse: collapse;
  margin: 14px 0 18px;
  font-size: 14px;
}
th, td {
  border: 1px solid var(--edge);
  padding: 8px 10px;
  text-align: left;
  vertical-align: top;
}
th { background: rgba(128, 128, 128, 0.09); font-weight: 600; }
.table-wrap { overflow-x: auto; }

footer {
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  margin-top: 34px;
}
