/* Aktüel — public site. Served straight off disk by platform_nginx from
   /root/apps/aktuel/www/. No build step, no framework: the only job this site
   has today is to host the two URLs both app stores require at a public
   address (/gizlilik, /destek). */

:root {
  --bg: #fbfaf7;
  --surface: #ffffff;
  --ink: #181b22;
  --ink-soft: #5c6270;
  --brand: #0e7c66;      /* same green as the Android adaptive icon background */
  --line: #e6e3dc;
  --warn-bg: #fff8e6;
  --warn-line: #e8c96a;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #14161b;
    --surface: #1b1e25;
    --ink: #f2f0ec;
    --ink-soft: #a2a8b5;
    --brand: #3fbfa1;
    --line: #2b2f38;
    --warn-bg: #2e2716;
    --warn-line: #6b5a24;
  }
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 16px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-text-size-adjust: 100%;
}

.wrap { max-width: 44rem; margin: 0 auto; padding: 2.5rem 1.25rem 4rem; }

header.site {
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}
header.site .wrap { padding: 1.1rem 1.25rem; display: flex; align-items: center; gap: .75rem; }
header.site a.brand {
  color: var(--ink); text-decoration: none; font-weight: 700; font-size: 1.15rem; letter-spacing: -0.01em;
}
header.site .dot {
  width: .6rem; height: .6rem; border-radius: 2px; background: var(--brand); display: inline-block;
}
header.site nav { margin-left: auto; display: flex; gap: 1.1rem; }
header.site nav a { color: var(--ink-soft); text-decoration: none; font-size: .93rem; }
header.site nav a:hover { color: var(--brand); }

h1 { font-size: 1.9rem; line-height: 1.25; letter-spacing: -0.02em; margin: 0 0 .5rem; }
h2 { font-size: 1.15rem; margin: 2.2rem 0 .5rem; letter-spacing: -0.01em; }
h3 { font-size: 1rem; margin: 1.4rem 0 .35rem; color: var(--ink); }
p, li { color: var(--ink-soft); }
p { margin: .65rem 0; }
a { color: var(--brand); }
ul { padding-left: 1.15rem; }
li { margin: .3rem 0; }
strong { color: var(--ink); font-weight: 600; }
hr { border: 0; border-top: 1px solid var(--line); margin: 2rem 0; }

.lede { font-size: 1.05rem; color: var(--ink-soft); }
.meta { font-size: .88rem; color: var(--ink-soft); margin: 0 0 1.5rem; }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: .7rem;
  padding: 1.1rem 1.25rem;
  margin: 1.25rem 0;
}

/* Unfilled legal placeholders. Deliberately loud: this page must never reach a
   store reviewer with a TODO still in it. */
.todo {
  background: var(--warn-bg);
  border: 1px dashed var(--warn-line);
  border-radius: .4rem;
  padding: .1rem .4rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: .85em;
  color: var(--ink);
}

footer.site {
  border-top: 1px solid var(--line);
  margin-top: 3rem;
  padding: 1.5rem 0;
  font-size: .88rem;
  color: var(--ink-soft);
}
footer.site .wrap { padding-top: 0; padding-bottom: 0; }
