:root {
  --ink: #222;
  --muted: #6b7280;
  --porcelain: #f6f6f6;
  --accent: #c9d6df;
  --accent2: #eaeff2;
  --card: #ffffff;
  --link: #1f6feb;
  --border: rgba(0,0,0,.06);
  --shadow: 0 8px 30px rgba(0,0,0,.05);
}

* { box-sizing: border-box; }
html, body { height: 100%; margin: 0; }

body {
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(1200px 800px at 30% 10%, var(--accent2), transparent 60%),
    radial-gradient(1000px 700px at 80% 90%, var(--accent), transparent 55%),
    linear-gradient(180deg, #fff, var(--porcelain));
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  line-height: 1.6;
}

body.menu-open,
body.lightbox-open { overflow: hidden; }

.wrap { max-width: 980px; margin: 0 auto; padding: clamp(20px, 4vw, 48px); }
.wrap h1 { text-align: center; }

.logo {
  width: 128px; height: 128px; margin: 20px auto; color: #9aa9b2;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,.08)); display: block;
}

.logo-image {
  display: block;
  margin: auto;
  border-radius: 50%; 
  width: 128px;
  height: 128px;
}

h1 { letter-spacing: .04em; font-weight: 600; margin: .5rem 0 1rem; }
.tagline { opacity: .8; margin: 0 0 1rem; text-align: center; }
.hint { color: var(--muted); font-size: .95rem; margin-top: 1rem; text-align: center; }

/* Status-Bubble zentriert, nur so breit wie Inhalt */
.status {
  display: flex;              /* block-level, zentrierbar */
  align-items: center;
  gap: .5rem;
  padding: .6rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,.75);
  box-shadow: 0 6px 30px rgba(0,0,0,.07);
  margin: 1rem auto 1.5rem;   /* horizontal zentriert */
  line-height: 1;
  width: fit-content;         /* schrumpft auf Inhalt */
}

.status .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  border-radius: 50%;
  background: #7fb069;
  animation: pulse 2.4s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(127,176,105,.5) }
  70% { box-shadow: 0 0 0 14px rgba(127,176,105,0) }
  100% { box-shadow: 0 0 0 0 rgba(127,176,105,0) }
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px 20px;
  margin: 20px auto;
  box-shadow: var(--shadow);
  max-width: 720px;
  text-align: left;
}

.legal { text-align: left; max-width: 820px; margin: 0 auto; }
.legal h2 { margin-top: 1.6rem; font-size: 1.1rem; }
.mono { font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace; }

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

.links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin: 2rem auto;
  flex-wrap: wrap;
}

.link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.75rem 1.5rem;
  background: var(--card);
  border: 1px solid var(--accent);
  border-radius: 12px;
  font-weight: 500;
  color: var(--ink);
  transition: all 0.3s ease;
  text-decoration: none !important;
}

.link-button svg {
  display: block;
  width: 1.1em;
  height: 1.1em;
  color: var(--ink);
}

.link-button:hover {
  border-color: var(--muted);
  background: var(--accent2);
  color: var(--ink);
}

.footer {
  max-width: 980px; margin: 32px auto;
  padding: 0 20px 28px; color: var(--muted);
  font-size: .9rem; text-align: center;
}
.footer a { color: var(--link); }
