/* Website-Check — Brand: michael-manke.com (dark, cyan/violet accent) */
/* Inter selbst gehostet (variable, latin, wght 400–700) — kein Google-Fonts-Request, DSGVO. */
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/fonts/inter-latin-400-700.woff2") format("woff2");
}
:root {
  --bg: #07070c;
  --surface: #0e0e17;
  --surface-2: #14141f;
  --fg: #e9e9f1;
  --muted: #9d9db2;
  --line: #23233a;
  --accent: #22d3ee;
  --accent-2: #a78bfa;
  --red: #f87171;
  --amber: #fbbf24;
  --green: #34d399;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.6;
  overflow-wrap: break-word;
}
body::before {
  content: "";
  position: fixed; inset: 0 0 auto 0; height: 340px; pointer-events: none;
  background: radial-gradient(60% 100% at 20% 0%, rgba(34, 211, 238, .13), transparent 70%),
              radial-gradient(50% 100% at 85% 0%, rgba(167, 139, 250, .11), transparent 70%);
}
a { color: var(--accent); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: #67e8f9; }

.wrap { position: relative; width: 100%; max-width: 780px; margin: 0 auto; padding: 40px 20px 64px; }

.eyebrow { margin: 0 0 8px; font-size: .8rem; letter-spacing: .09em; text-transform: uppercase; color: var(--accent); font-weight: 600; }
h1 { margin: 0 0 14px; font-size: clamp(1.65rem, 5.4vw, 2.6rem); line-height: 1.15; letter-spacing: -.02em; font-weight: 700; }
.h2 { margin: 0 0 10px; font-size: clamp(1.15rem, 3.6vw, 1.4rem); line-height: 1.25; letter-spacing: -.01em; font-weight: 650; }
.h3 { margin: 0 0 10px; font-size: 1.02rem; font-weight: 650; }
.lede { margin: 0 0 18px; color: #c9c9dc; }
.muted { color: var(--muted); margin: 0 0 10px; }
.muted-s { color: var(--muted); font-size: .86rem; margin: 0; }
.mono { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; }

.hero { margin-bottom: 26px; }
.bullets { list-style: none; margin: 22px 0 0; padding: 0; display: grid; gap: 10px; }
.bullets li {
  display: grid; gap: 2px;
  padding: 12px 14px 12px 40px; position: relative;
  background: var(--surface); border: 1px solid var(--line); border-radius: 12px;
}
.bullets li::before {
  content: ""; position: absolute; left: 15px; top: 19px;
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 0 4px rgba(34, 211, 238, .14);
}
.bullets strong { font-weight: 600; }
.bullets span { color: var(--muted); font-size: .92rem; }

.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: 16px;
  padding: 22px 20px; margin: 0 0 18px;
}
.center { text-align: center; }
.form-card { border-color: #2c2c48; }

.field { display: block; margin: 0 0 16px; }
.label { display: block; font-size: .9rem; font-weight: 550; margin-bottom: 6px; color: #d5d5e6; }
input[type=text], input[type=email] {
  width: 100%; padding: 13px 14px; font: inherit; font-size: 16px;
  color: var(--fg); background: var(--surface-2);
  border: 1px solid #2e2e4a; border-radius: 11px;
}
input::placeholder { color: #6c6c84; }
input:focus-visible { outline: 2px solid var(--accent); outline-offset: 1px; border-color: transparent; }

.check { display: flex; gap: 11px; align-items: flex-start; margin: 4px 0 20px; font-size: .93rem; color: #d5d5e6; }
.check input { width: 20px; height: 20px; margin: 2px 0 0; flex: none; accent-color: var(--accent); }

button, .btn {
  display: inline-block; width: 100%; padding: 15px 22px;
  font: inherit; font-weight: 650; font-size: 1.02rem; text-align: center; text-decoration: none;
  color: #06121a; background: linear-gradient(100deg, var(--accent), var(--accent-2));
  border: 0; border-radius: 12px; cursor: pointer;
}
button:hover, .btn:hover { filter: brightness(1.08); color: #06121a; }
.trust { margin: 14px 0 0; font-size: .84rem; color: var(--muted); }
.alert {
  margin: 0 0 16px; padding: 11px 14px; border-radius: 11px; font-size: .92rem;
  background: rgba(248, 113, 113, .1); border: 1px solid rgba(248, 113, 113, .38); color: #fecaca;
}

/* progress */
.spinner { display: flex; gap: 7px; justify-content: center; margin: 4px 0 18px; }
.spinner span { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); opacity: .35; animation: blink 1.2s infinite; }
.spinner span:nth-child(2) { animation-delay: .2s; }
.spinner span:nth-child(3) { animation-delay: .4s; }
@keyframes blink { 0%, 100% { opacity: .25; } 50% { opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .spinner span { animation: none; } }

/* report */
.rhead { margin-bottom: 22px; }
.dom { font-size: clamp(1.5rem, 5.6vw, 2.2rem); word-break: break-all; }
.summary { display: flex; gap: 16px; align-items: flex-start; border-left: 3px solid var(--line); }
.summary.red { border-left-color: var(--red); }
.summary.amber { border-left-color: var(--amber); }
.summary.green { border-left-color: var(--green); }
.summary p { margin: 0 0 8px; color: #c9c9dc; }
.lights { display: flex; flex-direction: column; gap: 6px; flex: none; padding-top: 4px; }
.lights .l { width: 13px; height: 13px; border-radius: 50%; background: #22222f; }
.summary.red .l.red { background: var(--red); box-shadow: 0 0 10px rgba(248, 113, 113, .6); }
.summary.amber .l.amber { background: var(--amber); box-shadow: 0 0 10px rgba(251, 191, 36, .6); }
.summary.green .l.green { background: var(--green); box-shadow: 0 0 10px rgba(52, 211, 153, .6); }
.counts { font-size: .85rem; color: var(--muted) !important; margin: 0 !important; }

.tablewrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
table.findings { width: 100%; border-collapse: collapse; font-size: .93rem; }
table.findings th {
  text-align: left; font-size: .74rem; letter-spacing: .07em; text-transform: uppercase;
  color: var(--muted); font-weight: 600; padding: 0 10px 8px 0; border-bottom: 1px solid var(--line);
}
table.findings td { padding: 12px 10px 12px 0; border-bottom: 1px solid var(--line); vertical-align: top; }
table.findings tr:last-child td { border-bottom: 0; }
table.findings td:first-child { width: 1%; white-space: nowrap; }
.detail { display: block; color: var(--muted); font-size: .88rem; margin-top: 3px; }
.law { color: var(--muted); font-size: .84rem; }
.tag { color: var(--amber); font-size: .8rem; white-space: nowrap; }
.pill {
  display: inline-block; padding: 3px 9px; border-radius: 999px;
  font-size: .74rem; font-weight: 650; letter-spacing: .02em;
}
.pill.red { background: rgba(248, 113, 113, .15); color: #fca5a5; border: 1px solid rgba(248, 113, 113, .35); }
.pill.amber { background: rgba(251, 191, 36, .14); color: #fcd34d; border: 1px solid rgba(251, 191, 36, .32); }
.pill.yellow { background: rgba(163, 163, 190, .12); color: #c4c4d8; border: 1px solid rgba(163, 163, 190, .3); }

.weak { margin: 0; padding: 0; list-style: none; display: grid; gap: 8px; }
.weak li { font-size: .9rem; padding-left: 16px; position: relative; }
.weak li::before { content: "·"; position: absolute; left: 4px; color: var(--accent); }
.weak span { color: var(--muted); }

.cta { border-color: rgba(34, 211, 238, .35); background: linear-gradient(180deg, rgba(34, 211, 238, .07), rgba(167, 139, 250, .05)), var(--surface); }
.cta p { color: #c9c9dc; }
.price { font-size: .88rem; color: var(--muted) !important; }
.ctaline { margin: 18px 0 14px; }
.contact { font-size: .9rem; line-height: 1.75; margin-bottom: 0; }
.again { text-align: center; margin: 6px 0 0; font-size: .9rem; }

.foot { margin-top: 34px; padding-top: 18px; border-top: 1px solid var(--line); text-align: center; }
.foot p { margin: 0 0 4px; color: var(--muted); font-size: .84rem; }
.foot a { color: var(--muted); }

/* legal pages (Impressum / Datenschutz) */
.legal .card p { margin: 0 0 12px; color: #c9c9dc; }
.legal h2.h3 { margin: 22px 0 8px; }
.legal h1.h2 { margin-bottom: 16px; }

/* phones: tables become stacked rows so nothing has to scroll sideways */
@media (max-width: 560px) {
  .wrap { padding: 28px 16px 48px; }
  .card { padding: 18px 16px; border-radius: 14px; }
  .summary { gap: 12px; }
  .lights { flex-direction: row; }
  table.findings thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  table.findings, table.findings tbody, table.findings tr, table.findings td { display: block; width: auto; }
  table.findings tr { padding: 12px 0; border-bottom: 1px solid var(--line); }
  table.findings tr:last-child { border-bottom: 0; }
  table.findings td { border: 0; padding: 2px 0; }
  table.findings td:first-child { width: auto; padding-bottom: 6px; }
  table.findings.leads td::before {
    content: attr(data-l) ": "; color: var(--muted); font-size: .78rem;
    text-transform: uppercase; letter-spacing: .06em;
  }
  table.findings.leads td:first-child::before { content: none; }
}

/* phone landscape: keep the fold useful */
@media (max-height: 480px) and (orientation: landscape) {
  .wrap { padding-top: 22px; padding-bottom: 34px; }
  h1 { font-size: 1.5rem; }
}

@media (min-width: 720px) {
  button, .btn { width: auto; min-width: 260px; }
  .card { padding: 26px 26px; }
}
