/**
 * Inhaltsseiten.
 *
 * Bewusst statisches HTML mit einem eigenen, kleinen Stylesheet statt Teil der
 * React-Anwendung: Die Startseite baut ihren Text erst im Browser auf, und
 * KI-Crawler fuehren kein JavaScript aus. Diese Seiten sind der Teil der
 * Website, den jeder Crawler vollstaendig lesen kann — und genau darauf zielen
 * sie ab.
 */

@font-face {
  font-family: InstrumentSerif;
  src: url('./assets/instrument-serif.woff2') format('woff2');
  font-display: swap;
}

:root {
  color-scheme: dark;
  --bg: #07070c;
  --surface: rgba(255, 255, 255, .035);
  --text: #f2f0f7;
  --muted: #a9a5b6;
  --faint: #77738a;
  --line: rgba(255, 255, 255, .11);
  --violet: #7c4dff;
  --violet-soft: #c2a6ff;
  --serif: InstrumentSerif, Georgia, serif;
  --sans: "Segoe UI Variable", "Segoe UI", system-ui, Arial, sans-serif;
}

* { box-sizing: border-box }

body {
  margin: 0;
  background: radial-gradient(circle at 50% -8%, #17102d 0, transparent 42%), var(--bg);
  color: var(--text);
  font: 16px/1.7 var(--sans);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--violet-soft); text-decoration: none }
a:hover { text-decoration: underline }

.shell { width: min(760px, calc(100% - 44px)); margin: 0 auto }

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.topbar a.brand { color: var(--text); font-weight: 700; letter-spacing: -.01em }
.topbar nav a { margin-left: 20px; color: var(--muted); font-size: 13px }

article { padding: 58px 0 90px }

.kicker {
  margin: 0 0 14px;
  color: var(--violet-soft);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .15em;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 20px;
  font-family: var(--serif);
  font-size: clamp(38px, 6vw, 60px);
  font-weight: 400;
  letter-spacing: -.03em;
  line-height: 1.02;
}

/* Die Antwort steht vor der Erklaerung. KI-Systeme zitieren, was sie
   zusammenfassen koennen, ohne den Sinn zu verschieben — ein Text, der erst
   nach vier Absaetzen zur Sache kommt, wird nicht zitiert. */
.answer {
  margin: 0 0 34px;
  padding: 20px 22px;
  border-left: 2px solid var(--violet);
  background: var(--surface);
  border-radius: 0 12px 12px 0;
  font-size: 17px;
}

h2 {
  margin: 46px 0 14px;
  font-family: var(--serif);
  font-size: clamp(26px, 3.4vw, 34px);
  font-weight: 400;
  letter-spacing: -.02em;
}

h3 { margin: 30px 0 8px; font-size: 16px; font-weight: 700 }

p { margin: 0 0 16px; color: var(--muted) }
p strong, li strong { color: var(--text) }

ul, ol { margin: 0 0 18px; padding-left: 22px; color: var(--muted) }
li { margin-bottom: 7px }

table { width: 100%; margin: 22px 0; border-collapse: collapse; font-size: 14px }
th, td { padding: 10px 12px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top }
th { color: var(--faint); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase }
td { color: var(--muted) }
td code { color: var(--violet-soft) }

code {
  padding: 2px 6px;
  border-radius: 5px;
  background: rgba(255, 255, 255, .06);
  font-family: ui-monospace, Consolas, monospace;
  font-size: .89em;
}

.steps { counter-reset: step; padding-left: 0; list-style: none }
.steps li { position: relative; margin-bottom: 22px; padding-left: 44px }
.steps li::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--violet-soft);
  font-size: 12px;
  font-weight: 750;
}

.cta {
  margin: 46px 0 0;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
}
.cta a.button {
  display: inline-block;
  margin-top: 12px;
  padding: 13px 22px;
  border-radius: 11px;
  background: linear-gradient(160deg, #7c4dff, #6132e0);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}
.cta a.button:hover { text-decoration: none }

footer {
  padding: 26px 0 40px;
  border-top: 1px solid var(--line);
  color: var(--faint);
  font-size: 12px;
}
footer a { margin-right: 16px; color: var(--faint) }

.node-group { margin-top: 40px }
.node-group h2 { margin-bottom: 4px }
.node-group > p { margin-bottom: 18px; font-size: 14px }
