:root {
  color-scheme: dark;
  --bg: #061018;
  --bg-deep: #03090e;
  --panel: rgba(9, 26, 36, 0.86);
  --panel-solid: #0a1b25;
  --line: rgba(159, 207, 223, 0.22);
  --line-strong: rgba(173, 220, 234, 0.46);
  --text: #eff7f8;
  --muted: #94b1bc;
  --cyan: #a8d3df;
  --red: #ff3b32;
  --red-soft: rgba(255, 59, 50, 0.18);
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html {
  min-width: 320px;
  background: var(--bg-deep);
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 72% 36%, rgba(28, 91, 117, 0.18), transparent 31rem),
    linear-gradient(145deg, #02080d 0%, #06131c 48%, #030a0f 100%);
  color: var(--text);
  font-family: var(--sans);
}

button, a { font: inherit; }
a { color: inherit; }

.noise {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.84' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.58'/%3E%3C/svg%3E");
}

.boot {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  min-height: 100svh;
  padding: 24px;
  overflow: hidden;
  background: #030b11;
  transition: opacity 520ms ease, visibility 520ms ease;
}

.boot::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(35, 110, 139, 0.19), transparent 44%);
}

.boot-grid {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle, #000 0%, transparent 78%);
}

.boot-inner {
  position: relative;
  width: min(100%, 430px);
  text-align: center;
}

.system-label,
.eyebrow,
.access-state,
.file-kicker,
.preview-tag,
.document-preview figcaption,
.footer,
.status-strip,
.skip {
  font-family: var(--mono);
  letter-spacing: 0.13em;
}

.system-label {
  margin-bottom: 44px;
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 700;
}

.boot-mark {
  position: relative;
  width: 156px;
  height: 156px;
  margin: 0 auto 38px;
}

.boot-ring,
.boot-axis,
.boot-core {
  position: absolute;
  display: block;
}

.boot-ring {
  inset: 0;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
}

.boot-ring-a { animation: orbit 5s linear infinite; }
.boot-ring-a::before,
.boot-ring-b::before {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 18px var(--red);
}
.boot-ring-a::before { top: 17px; right: 21px; }
.boot-ring-b { inset: 18px; border-style: dashed; animation: orbit-reverse 8s linear infinite; }
.boot-ring-b::before { bottom: 4px; left: 40px; width: 5px; height: 5px; background: var(--cyan); box-shadow: 0 0 14px var(--cyan); }
.boot-axis { top: 50%; left: -12%; width: 124%; height: 1px; background: linear-gradient(90deg, transparent, var(--line-strong), transparent); }
.boot-core { inset: 61px; border: 1px solid var(--cyan); transform: rotate(45deg); box-shadow: 0 0 24px rgba(168, 211, 223, 0.25); }

.boot-title {
  margin: 0 0 24px;
  font: 300 clamp(1.8rem, 5vw, 2.7rem)/1 var(--sans);
  letter-spacing: 0.18em;
}

.boot-steps {
  display: grid;
  gap: 11px;
  margin: 0 auto 32px;
  text-align: left;
}

.boot-step {
  padding: 11px 13px;
  border-left: 2px solid var(--line);
  color: #5f7781;
  font: 700 0.82rem/1.35 var(--mono);
  letter-spacing: 0.08em;
  transition: color 220ms ease, border-color 220ms ease, background 220ms ease;
}

.boot-step span { display: inline-block; width: 38px; color: #55717b; }
.boot-step.active { color: var(--text); border-color: var(--red); background: linear-gradient(90deg, var(--red-soft), transparent); }
.boot-step.done { color: var(--cyan); border-color: var(--cyan); }
.boot-step.done::after { content: "  / OK"; color: var(--red); }

.skip {
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.78rem;
}
.skip:hover,
.skip:focus-visible { border-color: var(--cyan); color: var(--text); outline: none; }

.portal {
  min-height: 100vh;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 620ms ease 120ms, transform 620ms ease 120ms, visibility 0s linear 740ms;
}

body.is-ready .boot { opacity: 0; visibility: hidden; }
body.is-ready .portal { opacity: 1; visibility: visible; transform: none; }

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  padding: 0 clamp(20px, 5vw, 78px);
  border-bottom: 1px solid var(--line);
  background: rgba(3, 10, 15, 0.68);
  backdrop-filter: blur(14px);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.3em;
}

.wordmark-dot { width: 3px; height: 23px; background: var(--red); box-shadow: 0 0 13px rgba(255, 59, 50, 0.55); }
.access-state { display: flex; align-items: center; gap: 9px; color: var(--cyan); font-size: 0.72rem; font-weight: 700; }
.access-state span { width: 7px; height: 7px; background: var(--red); box-shadow: 0 0 12px var(--red); }

.archive-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.72fr);
  gap: clamp(40px, 7vw, 120px);
  align-items: center;
  width: min(100%, 1440px);
  min-height: calc(100svh - 151px);
  margin: 0 auto;
  padding: clamp(55px, 7vw, 112px) clamp(22px, 7vw, 110px) 66px;
  overflow: hidden;
}

.archive-copy { position: relative; z-index: 3; max-width: 770px; }
.eyebrow { margin: 0 0 25px; color: var(--red); font-size: 0.78rem; font-weight: 700; }
h1 { margin: 0; font-size: clamp(3.4rem, 7.5vw, 7.2rem); font-weight: 250; line-height: 0.86; letter-spacing: 0.04em; }
h1 span { display: block; }
.subtitle { margin: 24px 0 0; color: var(--cyan); font-size: clamp(1.05rem, 2vw, 1.6rem); font-weight: 300; letter-spacing: 0.3em; }
.intro { max-width: 680px; margin: 27px 0 36px; color: var(--muted); font-size: 1rem; line-height: 1.7; }

.file-card {
  position: relative;
  display: grid;
  grid-template-columns: 86px 1fr;
  border: 1px solid var(--line-strong);
  background: linear-gradient(130deg, rgba(11, 34, 46, 0.96), rgba(6, 18, 26, 0.86));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.file-card::before { content: ""; position: absolute; inset: -1px auto -1px -1px; width: 3px; background: var(--red); }
.file-index { display: grid; place-items: center; border-right: 1px solid var(--line); color: var(--red); font: 700 0.82rem/1 var(--mono); letter-spacing: 0.12em; writing-mode: vertical-rl; transform: rotate(180deg); }
.file-data { padding: 25px clamp(20px, 3vw, 34px) 28px; }
.file-kicker { margin: 0 0 8px; color: var(--muted); font-size: 0.72rem; font-weight: 700; }
.file-data h2 { margin: 0 0 22px; font: 500 clamp(1.45rem, 3vw, 2.25rem)/1.1 var(--sans); letter-spacing: 0.08em; }
.file-data dl { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; margin: 0 0 27px; }
.file-data dl div { border-top: 1px solid var(--line); padding-top: 10px; }
.file-data dt { margin-bottom: 7px; color: #71919d; font: 700 0.68rem/1.2 var(--mono); letter-spacing: 0.08em; }
.file-data dd { margin: 0; color: var(--text); font: 700 0.78rem/1.25 var(--mono); }
.file-actions { display: flex; flex-wrap: wrap; gap: 11px; }
.primary-action,
.secondary-action { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; padding: 13px 18px; text-decoration: none; font: 700 0.76rem/1 var(--mono); letter-spacing: 0.1em; transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease; }
.primary-action { gap: 20px; border: 1px solid var(--red); background: var(--red); color: #071017; }
.secondary-action { border: 1px solid var(--line-strong); color: var(--cyan); }
.primary-action:hover,
.primary-action:focus-visible { background: #ff5b53; transform: translateY(-1px); outline: none; }
.secondary-action:hover,
.secondary-action:focus-visible { border-color: var(--cyan); color: var(--text); outline: none; }

.document-preview { position: relative; z-index: 2; width: min(100%, 390px); margin: 0 auto; }
.preview-tag { margin-bottom: 11px; color: var(--red); font-size: 0.7rem; font-weight: 700; text-align: right; }
.document-frame { position: relative; padding: 12px; border: 1px solid var(--line); background: rgba(4, 13, 19, 0.74); box-shadow: 0 36px 100px rgba(0,0,0,.5); transform: perspective(1100px) rotateY(-4deg) rotateX(1deg); }
.document-frame img { display: block; width: 100%; height: auto; opacity: 0.91; filter: saturate(0.82) contrast(1.04); }
.corner { position: absolute; width: 21px; height: 21px; }
.corner-tl { top: -1px; left: -1px; border-top: 2px solid var(--red); border-left: 2px solid var(--red); }
.corner-br { right: -1px; bottom: -1px; border-right: 2px solid var(--cyan); border-bottom: 2px solid var(--cyan); }
.document-preview figcaption { margin-top: 13px; color: var(--muted); font-size: 0.66rem; line-height: 1.55; text-align: right; }

.scan-field { position: absolute; top: 12%; right: -8%; width: min(64vw, 850px); aspect-ratio: 1; opacity: 0.43; pointer-events: none; }
.field-ring { position: absolute; border: 1px solid var(--line); border-radius: 50%; }
.ring-1 { inset: 9%; }
.ring-2 { inset: 22%; border-style: dashed; animation: orbit 28s linear infinite; }
.ring-3 { inset: 35%; }
.field-cross { position: absolute; background: linear-gradient(90deg, transparent, var(--line-strong), transparent); }
.field-cross-x { top: 50%; left: 0; width: 100%; height: 1px; }
.field-cross-y { left: 50%; top: 0; height: 100%; width: 1px; background: linear-gradient(transparent, var(--line-strong), transparent); }
.scan-line { position: absolute; left: 13%; top: 0; width: 1px; height: 100%; background: linear-gradient(transparent, var(--red), transparent); animation: scan 8s ease-in-out infinite; }

.status-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1440px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.status-strip > div { position: relative; display: grid; grid-template-columns: auto 1fr; column-gap: 13px; padding: 21px clamp(20px, 4vw, 48px); border-right: 1px solid var(--line); }
.status-strip > div:last-child { border-right: 0; }
.status-strip span { grid-row: 1 / span 2; color: var(--red); font-size: 0.74rem; }
.status-strip strong { color: var(--muted); font-size: 0.69rem; letter-spacing: 0.12em; }
.status-strip p { margin: 5px 0 0; color: var(--text); font-size: 0.78rem; }

.footer { display: flex; justify-content: space-between; gap: 20px; padding: 24px clamp(20px, 5vw, 78px) 32px; color: #66828d; font-size: 0.68rem; line-height: 1.5; }
.footer p { margin: 0; }
.footer p:first-child { color: var(--red); }

@keyframes orbit { to { transform: rotate(360deg); } }
@keyframes orbit-reverse { to { transform: rotate(-360deg); } }
@keyframes scan { 0%, 100% { transform: translateX(0); opacity: 0; } 20% { opacity: .8; } 50% { transform: translateX(620px); opacity: .9; } 80% { opacity: 0; } }

@media (max-width: 920px) {
  .archive-shell { grid-template-columns: 1fr; gap: 42px; padding-top: 64px; }
  .archive-copy { max-width: none; }
  .document-preview { width: min(78vw, 390px); }
  .scan-field { top: 22%; right: -46%; width: 120vw; }
  .file-data dl { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 580px) {
  .topbar { min-height: 66px; padding-inline: 18px; }
  .wordmark { font-size: 0.72rem; letter-spacing: 0.2em; }
  .access-state { font-size: 0; gap: 0; }
  .access-state span { width: 8px; height: 8px; }
  .archive-shell { padding: 48px 18px 46px; }
  .eyebrow { max-width: 300px; font-size: 0.72rem; line-height: 1.7; }
  h1 { font-size: clamp(2.72rem, 13vw, 4.2rem); line-height: 0.9; letter-spacing: 0.015em; }
  .subtitle { font-size: 0.94rem; line-height: 1.6; letter-spacing: 0.22em; }
  .intro { margin-bottom: 28px; font-size: 1rem; }
  .file-card { grid-template-columns: 48px 1fr; }
  .file-data { padding: 22px 18px 24px; }
  .file-data dl { grid-template-columns: 1fr 1fr; gap: 13px 10px; }
  .file-actions { display: grid; }
  .primary-action, .secondary-action { width: 100%; }
  .document-preview { width: min(88vw, 360px); }
  .status-strip { grid-template-columns: 1fr; margin-inline: 18px; }
  .status-strip > div { border-right: 0; border-bottom: 1px solid var(--line); }
  .status-strip > div:last-child { border-bottom: 0; }
  .footer { flex-direction: column; padding: 25px 18px 34px; }
  .boot { padding: 20px; }
  .boot-title { font-size: 1.72rem; letter-spacing: 0.12em; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

/* Roman und Autor: derselbe Archivstil, mit gut lesbaren Textflächen. */
:root { --content-width: 1280px; }
body { overflow-x: clip; }
html { scroll-padding-top: 110px; }
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 5px;
}
.topbar { position: sticky; top: 0; z-index: 10; gap: 24px; flex-wrap: wrap; padding-block: 18px; }
.wordmark { font-size: .875rem; letter-spacing: .2em; }
.site-nav { display: flex; flex-wrap: wrap; align-items: center; gap: 4px 25px; }
.site-nav a { padding: 10px 0; color: var(--muted); text-decoration: none; font-size: .9375rem; }
.site-nav a:hover, .site-nav a:focus-visible { color: var(--text); }
.archive-shell { grid-template-columns: minmax(0, 1.2fr) minmax(250px, .72fr); gap: clamp(32px, 4vw, 70px); }
h1 { font-size: clamp(2.6rem, 4.5vw, 4.35rem); line-height: 1.02; letter-spacing: .015em; }
.eyebrow { font-size: .8125rem; line-height: 1.7; }
.fiction-label { font: 500 .8125rem/1.6 var(--mono); color: var(--cyan); margin: 30px 0 0; letter-spacing: .06em; }
.intro { margin-top: 12px; }
.file-card { grid-template-columns: 46px minmax(0, 1fr); }
.file-data dl { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.file-data dt { font-size: .75rem; }
.file-data dd { font-size: .875rem; line-height: 1.5; }
.file-kicker, .file-index, .preview-tag, .document-preview figcaption { font-size: .75rem; line-height: 1.5; }
.primary-action, .secondary-action { font-size: .875rem; line-height: 1.35; letter-spacing: .06em; text-align: center; }
.skip { font-size: .875rem; }
.text-link { display: inline-flex; align-items: center; gap: 18px; padding: 20px 0 8px; color: var(--cyan); text-decoration-thickness: 1px; text-underline-offset: 5px; font-size: .9375rem; }
.status-strip strong { font-size: .75rem; }
.status-strip p { font-size: .875rem; }
.section-wrap { width: min(100%, var(--content-width)); margin: 0 auto; padding: clamp(65px, 8vw, 112px) clamp(22px, 6vw, 80px); }
.section-heading { margin-bottom: 45px; }
.section-wrap h2 { margin: 0; font-size: clamp(2rem, 4.2vw, 3.8rem); font-weight: 300; line-height: 1.12; letter-spacing: -.02em; }
.section-wrap .eyebrow { margin-bottom: 20px; }
.book-grid { display: grid; grid-template-columns: minmax(240px, .72fr) minmax(0, 1.2fr); align-items: start; gap: clamp(35px, 6vw, 86px); }
.book-cover { margin: 0; max-width: 350px; }
.book-cover img { display: block; width: 100%; height: auto; border: 1px solid var(--line-strong); box-shadow: 0 26px 55px #0008; }
.book-cover figcaption { margin-top: 18px; color: var(--muted); font: 500 .75rem/1.7 var(--mono); letter-spacing: .08em; }
.book-copy h3 { margin: 10px 0 25px; font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 400; }
.book-copy p, .author-copy p, .launch-copy p, .contact-copy p { margin: 0 0 20px; font-size: 1.0625rem; line-height: 1.75; color: #b7cbd3; }
.book-copy .book-category { color: var(--cyan); font-size: .875rem; }
.book-copy .book-question { color: var(--text); }
.book-facts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; margin: 30px 0 18px; }
.book-facts div { border-top: 1px solid var(--line); padding-top: 14px; }
.book-facts dt { color: var(--muted); margin-bottom: 7px; font-size: .875rem; }
.book-facts dd { margin: 0; color: var(--text); font-size: 1rem; overflow-wrap: anywhere; }
.book-copy .publication-note { font-size: .875rem; color: var(--muted); }
.launch-section { display: grid; grid-template-columns: 1fr 1fr; align-items: start; gap: 45px; border-block: 1px solid var(--line-strong); background: linear-gradient(100deg, #ff3b320a, transparent 65%); }
.launch-section .eyebrow { color: var(--red); }
.launch-copy p:last-child { margin-bottom: 0; font-size: 1rem; color: var(--muted); }
.author-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(30px, 5vw, 70px); }
.author-subtitle { color: var(--muted); font-size: 1rem; line-height: 1.6; }
.author-copy .author-lead { font-size: 1.375rem; color: var(--text); line-height: 1.55; }
.author-copy em { font-style: normal; color: var(--text); }
.author-copy blockquote { margin: 30px 0 0; border-left: 2px solid var(--red); padding: 7px 0 7px 24px; font-size: 1.3rem; line-height: 1.55; color: var(--cyan); }
.contact-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(30px, 5vw, 70px); border-top: 1px solid var(--line); }
.contact-link { display: inline-block; font-size: clamp(1rem, 2vw, 1.5rem); color: var(--cyan); line-height: 1.7; text-underline-offset: 6px; overflow-wrap: anywhere; }
.contact-link span { white-space: nowrap; }
.social-contact { margin-top: 30px; }
.social-contact p { font-size: .9375rem; color: var(--muted); }
.social-contact .secondary-action { gap: 12px; flex-wrap: wrap; }
.launch-copy a { color: var(--cyan); text-underline-offset: 4px; }
.site-footer { display: block; width: min(100%, var(--content-width)); margin: 0 auto; padding: 30px clamp(22px, 6vw, 80px) 40px; border-top: 1px solid var(--line); color: var(--muted); font-size: .8125rem; letter-spacing: .03em; }
.footer-line { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 18px; margin-bottom: 24px; }
.footer-line p:first-child { color: var(--cyan); }
.footer-line a { min-height: 35px; text-underline-offset: 4px; }
.site-footer .fiction-note { font: 400 .875rem/1.65 var(--sans); color: var(--muted); max-width: 760px; margin-bottom: 28px; letter-spacing: 0; }
.legal { border-top: 1px solid var(--line); font: 400 .9375rem/1.65 var(--sans); letter-spacing: 0; }
.legal summary { padding: 16px 0; cursor: pointer; color: var(--text); }
.legal-content { padding: 0 0 15px; }
.legal-content p { margin: 0 0 14px; }
.legal-content p:first-child { color: var(--muted); }
.legal-content address { font-style: normal; margin-bottom: 14px; }
.legal-content a { overflow-wrap: anywhere; }
@media (max-width: 920px) {
  .archive-shell { grid-template-columns: 1fr; }
  h1 { font-size: clamp(2.5rem, 7vw, 4.3rem); }
  .document-preview { width: min(70vw, 330px); }
  .book-grid { grid-template-columns: minmax(180px, .65fr) minmax(0, 1fr); gap: 30px; }
  .launch-section, .author-section, .contact-section { grid-template-columns: 1fr; gap: 30px; }
  .author-section .section-heading { margin-bottom: 0; }
}
@media (max-width: 600px) {
  html { scroll-padding-top: 135px; }
  .topbar { display: block; padding: 15px 20px 9px; }
  .wordmark { font-size: .8125rem; letter-spacing: .14em; }
  .site-nav { margin-top: 9px; gap: 4px 21px; }
  .site-nav a { font-size: .875rem; padding-block: 9px; }
  .archive-shell { padding: 45px 20px; }
  h1 { font-size: clamp(1.8rem, 8.3vw, 3rem); line-height: 1.08; }
  .subtitle { font-size: .9375rem; letter-spacing: .16em; }
  .eyebrow { max-width: none; }
  .file-card { grid-template-columns: 32px minmax(0, 1fr); }
  .file-data { padding-inline: 14px; }
  .file-data h2 { font-size: clamp(1.125rem, 5.5vw, 1.6rem); letter-spacing: .025em; }
  .file-kicker { letter-spacing: .04em; }
  .file-data dd { font-size: .8125rem; overflow-wrap: anywhere; }
  .file-actions { display: flex; flex-direction: column; }
  .document-preview { width: min(75vw, 310px); }
  .section-wrap { padding: 60px 22px; }
  .section-heading { margin-bottom: 32px; }
  .book-grid { grid-template-columns: 1fr; gap: 35px; }
  .book-cover { width: min(78%, 300px); margin-inline: auto; }
  .book-copy p, .author-copy p, .launch-copy p, .contact-copy p { font-size: 1rem; }
  .author-copy .author-lead { font-size: 1.25rem; }
  .book-facts { gap: 22px 12px; }
  .site-footer { padding: 28px 22px 40px; }
}

#datenschutz .legal-content h2{font-size:1.125rem;line-height:1.4;margin:28px 0 12px}#datenschutz .legal-content p{font-size:1rem;line-height:1.7}#datenschutz .legal-content{max-width:900px}
