:root {
  --bg: #f7f9fc;
  --paper: #ffffff;
  --soft: #f0f5fb;
  --ink: #07142c;
  --muted: #566176;
  --muted-2: #7a8497;
  --line: rgba(10, 24, 54, .12);
  --line-strong: rgba(10, 24, 54, .18);
  --blue: #0ea5e9;
  --cyan: #0e7490;
  --teal: #0f766e;
  --navy: #07142c;
  --maxw: 1160px;
  --radius: 24px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: linear-gradient(180deg, #fff 0%, #f8fbff 42%, #edf4fb 100%);
  color: var(--ink);
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 17px;
  line-height: 1.64;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
a:hover { color: #075985; }
h1, h2, h3 {
  font-family: "Sora", sans-serif;
  letter-spacing: 0;
  line-height: 1.08;
}
.wrap {
  width: min(100% - 40px, var(--maxw));
  margin: 0 auto;
}
.nav {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, .86);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 34px rgba(12, 25, 48, .06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.nav-inner {
  width: min(100% - 40px, var(--maxw));
  height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-brand img { height: 38px; width: auto; display: block; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 800;
  color: #5a667a;
}
.nav-cta {
  background: var(--navy);
  color: #fff !important;
  padding: 10px 17px;
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(7, 20, 44, .18);
}
.hero {
  padding: 78px 0 56px;
  background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
  border-bottom: 1px solid var(--line);
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: var(--muted-2);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 28px;
}
.breadcrumb span { color: var(--muted-2); }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 44px;
  align-items: start;
}
.eyebrow {
  color: var(--cyan);
  font-size: 13px;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  margin-bottom: 16px;
}
h1 {
  font-size: clamp(38px, 5vw, 64px);
  max-width: 860px;
  margin-bottom: 20px;
}
.lead {
  color: #33415c;
  font-size: 20px;
  max-width: 820px;
}
.direct-answer {
  margin-top: 24px;
  padding: 22px 24px;
  background: #eefaff;
  border: 1px solid rgba(8, 145, 178, .18);
  border-radius: 20px;
  color: #24324a;
}
.direct-answer b {
  display: block;
  font-family: "Sora", sans-serif;
  color: #0e7490;
  font-size: 13px;
  margin-bottom: 8px;
}
.hero-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .92);
  border-radius: 26px;
  padding: 24px;
  box-shadow: 0 22px 60px rgba(12, 25, 48, .08);
}
.hero-card h2 {
  font-size: 22px;
  margin-bottom: 14px;
}
.quick-list {
  display: grid;
  gap: 12px;
  list-style: none;
}
.quick-list li {
  padding-left: 18px;
  position: relative;
  color: var(--muted);
  font-size: 15px;
}
.quick-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--blue);
}
.section {
  padding: 78px 0;
}
.section.tight { padding: 58px 0; }
.section-head {
  max-width: 800px;
  margin-bottom: 30px;
}
.section-head h2 {
  font-size: clamp(30px, 4vw, 48px);
  margin-bottom: 14px;
}
.section-head p { color: var(--muted); }
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .92);
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 16px 46px rgba(12, 25, 48, .065);
}
.card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}
.card p { color: var(--muted); font-size: 15.5px; }
.kicker {
  display: block;
  font-family: "JetBrains Mono", monospace;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  margin-bottom: 12px;
}
.process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.process .card { min-height: 210px; }
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--paper);
  box-shadow: 0 16px 46px rgba(12, 25, 48, .06);
}
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}
th, td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
th {
  font-family: "Sora", sans-serif;
  font-size: 13px;
  color: #0e7490;
  background: #f4f9fe;
}
td { color: #33415c; font-size: 15px; }
tr:last-child td { border-bottom: 0; }
.example {
  background: #07142c;
  color: #fff;
  border-radius: 28px;
  padding: 34px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 26px;
}
.example h2 { font-size: clamp(28px, 4vw, 44px); }
.example p { color: #dbe7f7; }
.example-list {
  display: grid;
  gap: 10px;
  list-style: none;
}
.example-list li {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 16px;
  padding: 13px 14px;
  color: #e6eef8;
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.faq-item {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .94);
  border-radius: 20px;
  padding: 22px;
}
.faq-item h3 {
  font-size: 19px;
  margin-bottom: 8px;
}
.faq-item p {
  color: var(--muted);
  font-size: 15px;
}
.source-list {
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-size: 15px;
}
.source-list a {
  color: #0369a1;
  text-decoration: underline;
  text-decoration-color: rgba(3, 105, 161, .28);
  text-underline-offset: 3px;
}
.related {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.related a {
  border: 1px solid var(--line);
  background: #fff;
  color: #24324a;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 800;
  font-size: 14px;
}
.cta {
  background: linear-gradient(135deg, #07142c, #102748);
  color: #fff;
  border-radius: 30px;
  padding: 36px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
}
.cta h2 { font-size: clamp(30px, 4vw, 48px); margin-bottom: 10px; }
.cta p { color: #dbe7f7; max-width: 760px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: 15px;
  padding: 15px 22px;
  border-radius: 14px;
  background: #fff;
  color: var(--navy);
  white-space: nowrap;
}
footer {
  border-top: 1px solid var(--line);
  background: #f5f8fc;
  padding: 30px 0;
  color: var(--muted-2);
  font-size: 13px;
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.legal-warning {
  border: 1px solid rgba(245, 158, 11, .28);
  background: rgba(245, 158, 11, .08);
  color: #78350f;
  border-radius: 20px;
  padding: 18px 20px;
  margin-top: 20px;
}
.legal-warning b {
  display: block;
  font-family: "Sora", sans-serif;
  margin-bottom: 6px;
}
.legal-list {
  margin: 14px 0 0 20px;
  color: var(--muted);
}
.legal-list li + li { margin-top: 8px; }
.legal-meta {
  display: grid;
  gap: 14px;
}
.legal-meta div {
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
}
.legal-meta div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.legal-meta b {
  display: block;
  color: var(--ink);
  font-family: "Sora", sans-serif;
  font-size: 14px;
  margin-bottom: 4px;
}
@media (max-width: 980px) {
  .hero-grid, .example, .cta { grid-template-columns: 1fr; }
  .hero-card { max-width: 620px; }
  .process, .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  .wrap, .nav-inner { width: min(100% - 28px, var(--maxw)); }
  .nav-inner { height: 62px; }
  .nav-brand img { height: 32px; max-width: 154px; }
  .nav-links a:not(.nav-cta) { display: none; }
  .nav-cta { font-size: 12px; padding: 9px 13px; }
  .hero { padding: 42px 0 42px; }
  h1 { font-size: clamp(32px, 9vw, 43px); }
  .lead { font-size: 17px; }
  .section { padding: 58px 0; }
  .section.tight { padding: 44px 0; }
  .grid-2, .grid-3, .process, .faq-grid { grid-template-columns: 1fr; }
  .card, .hero-card, .faq-item { padding: 20px; border-radius: 20px; }
  .example, .cta { padding: 24px; border-radius: 24px; }
  .btn { width: 100%; }
  .table-wrap {
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }
  .table-wrap table,
  .table-wrap tbody,
  .table-wrap tr,
  .table-wrap td {
    display: block;
    width: 100%;
  }
  .table-wrap table {
    min-width: 0;
    border-collapse: separate;
  }
  .table-wrap thead { display: none; }
  .table-wrap tbody {
    display: grid;
    gap: 12px;
  }
  .table-wrap tr {
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 16px 42px rgba(12, 25, 48, .06);
    overflow: hidden;
  }
  .table-wrap td {
    border-bottom: 1px solid var(--line);
    padding: 12px 16px;
    font-size: 14.5px;
  }
  .table-wrap td:first-child {
    font-family: "Sora", sans-serif;
    font-weight: 800;
    color: var(--ink);
    background: #f4f9fe;
  }
  .table-wrap td:last-child { border-bottom: 0; }
  .table-wrap td:nth-child(n + 2)::before {
    content: "Quellen / Signale";
    display: block;
    margin-bottom: 3px;
    font-family: "JetBrains Mono", monospace;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    color: var(--cyan);
    text-transform: uppercase;
  }
  .table-wrap td:nth-child(3)::before { content: "Leitfrage"; }
}
