:root {
  color-scheme: light dark;
  --bg: #f5f5f7;
  --card: #ffffff;
  --ink: #1d1d1f;
  --muted: #6e6e73;
  --accent: #e85c2e;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #101014;
    --card: #1c1c21;
    --ink: #f2f2f4;
    --muted: #98989f;
    --accent: #ff7a4d;
  }
}
* { 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: 680px; margin: 0 auto; }
header { text-align: center; margin-bottom: 40px; }
/* Laserstrahl auf ein Materialstück — dieselbe Bildidee wie das App-Icon. */
.app-icon {
  width: 84px; height: 84px;
  margin: 0 auto 16px;
  background: linear-gradient(180deg, #2b2320, #17120f);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}
.app-icon .beam {
  position: absolute; left: 50%; top: 14px;
  width: 4px; height: 34px;
  transform: translateX(-50%);
  border-radius: 2px;
  background: linear-gradient(180deg, rgba(255, 122, 77, 0.15), var(--accent));
}
.app-icon .swatch {
  position: absolute; left: 18px; right: 18px; bottom: 20px;
  height: 16px;
  border-radius: 4px;
  background: #c8a679;
  box-shadow: 0 -6px 12px rgba(232, 92, 46, 0.55);
}
h1 { font-size: 2rem; letter-spacing: -0.02em; }
.subtitle { color: var(--muted); margin-top: 4px; }
section {
  background: var(--card);
  border-radius: 16px;
  padding: 28px 30px;
  margin-bottom: 20px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.07);
}
h2 { font-size: 1.25rem; margin-bottom: 14px; letter-spacing: -0.01em; }
.tldr {
  font-size: 1.05rem; font-weight: 600;
  color: var(--accent);
  margin-bottom: 14px;
}
p { margin-bottom: 12px; }
p:last-child { margin-bottom: 0; }
ul { margin: 14px 0 14px 22px; }
li { margin-bottom: 8px; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
footer { text-align: center; color: var(--muted); font-size: 0.85rem; margin-top: 32px; }
