:root {
  color-scheme: light;
  --bg: #f6f8fb;
  --surface: #ffffff;
  --surface-muted: #eef2f6;
  --ink: #17202d;
  --muted: #5b6777;
  --line: #d7dee8;
  --blue: #0867d8;
  --blue-dark: #064a9b;
  --teal: #087f70;
  --teal-soft: #e7f6f2;
  --amber: #925000;
  --amber-soft: #fff4df;
  --red: #a12a2a;
  --red-soft: #fff0f0;
  --shadow: 0 10px 30px rgba(23, 32, 45, 0.08);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: var(--blue);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--blue-dark);
}

a:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(8, 103, 216, 0.35);
  outline-offset: 3px;
  border-radius: 4px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.18;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: 46px;
  font-weight: 760;
}

h2 {
  margin-bottom: 18px;
  font-size: 31px;
  font-weight: 730;
}

h3 {
  margin-bottom: 8px;
  font-size: 21px;
  font-weight: 700;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--ink);
  color: #fff;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid rgba(215, 222, 232, 0.9);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}

.brand img {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: 10px;
  box-shadow: 0 3px 12px rgba(23, 32, 45, 0.16);
}

.brand-copy {
  min-width: 0;
}

.brand-title,
.brand-subtitle {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-title {
  font-size: 17px;
  font-weight: 730;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 13px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 9px 11px;
  border-radius: 6px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 650;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: var(--surface-muted);
  color: var(--ink);
}

.draft-banner {
  border-bottom: 1px solid #f0cf94;
  background: var(--amber-soft);
  color: #693900;
  font-size: 14px;
}

.draft-banner .shell {
  padding-top: 11px;
  padding-bottom: 11px;
}

.page-intro {
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.intro-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  align-items: center;
  padding-top: 68px;
  padding-bottom: 62px;
}

.intro-art {
  width: 132px;
  height: 132px;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.eyebrow {
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 760;
  text-transform: uppercase;
}

.lead {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 20px;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 15px;
}

.meta-row strong {
  color: var(--ink);
}

.section {
  padding: 64px 0;
}

.section.alt {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.section-heading p {
  margin-bottom: 0;
  color: var(--muted);
}

.quick-grid,
.permission-grid,
.support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.quick-link,
.permission-item,
.support-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.quick-link {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 20px;
  color: var(--ink);
  text-decoration: none;
  transition: border-color 150ms ease, box-shadow 150ms ease, transform 150ms ease;
}

.quick-link:hover {
  transform: translateY(-1px);
  border-color: #a8b8cc;
  box-shadow: var(--shadow);
  color: var(--ink);
}

.quick-link .symbol,
.permission-item .symbol {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  background: #e9f2ff;
  color: var(--blue);
  font-size: 21px;
  font-weight: 750;
}

.quick-link strong,
.quick-link small {
  display: block;
}

.quick-link small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 14px;
}

.quick-link .arrow {
  color: var(--muted);
  font-size: 24px;
}

.contact-band {
  border-top: 1px solid #bfe4da;
  border-bottom: 1px solid #bfe4da;
  background: var(--teal-soft);
}

.contact-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-top: 32px;
  padding-bottom: 32px;
}

.contact-inner p {
  margin-bottom: 0;
  color: #3d5e58;
}

.button-link {
  display: inline-flex;
  min-height: 46px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border: 1px solid var(--blue);
  border-radius: 7px;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.button-link:hover {
  border-color: var(--blue-dark);
  background: var(--blue-dark);
  color: #fff;
}

.button-link.secondary {
  background: transparent;
  color: var(--blue);
}

.button-link.secondary:hover {
  background: #e9f2ff;
  color: var(--blue-dark);
}

.spec-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
}

.spec-table th,
.spec-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.spec-table th {
  width: 29%;
  color: var(--ink);
  font-size: 15px;
}

.spec-table td {
  color: var(--muted);
}

.spec-table tr:last-child th,
.spec-table tr:last-child td {
  border-bottom: 0;
}

.permission-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  padding: 20px;
}

.permission-item p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.notice {
  margin-top: 24px;
  padding: 18px 20px;
  border: 1px solid #efcc8d;
  border-left: 5px solid #d68514;
  border-radius: 6px;
  background: var(--amber-soft);
  color: #5f3b0b;
}

.notice.danger {
  border-color: #e9bcbc;
  border-left-color: var(--red);
  background: var(--red-soft);
  color: #6d2222;
}

.notice strong {
  color: inherit;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  counter-reset: support-step;
  list-style: none;
}

.steps li {
  position: relative;
  min-width: 0;
  padding: 54px 20px 20px;
  border-top: 3px solid var(--blue);
  background: var(--surface);
  counter-increment: support-step;
}

.steps li::before {
  position: absolute;
  top: 16px;
  left: 20px;
  color: var(--blue);
  content: counter(support-step, decimal-leading-zero);
  font-size: 18px;
  font-weight: 800;
}

.steps p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.faq-list summary {
  position: relative;
  padding: 18px 54px 18px 20px;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 17px;
  right: 20px;
  color: var(--blue);
  content: "+";
  font-size: 24px;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-answer {
  padding: 0 20px 18px;
  color: var(--muted);
}

.faq-answer p:last-child,
.faq-answer ul:last-child {
  margin-bottom: 0;
}

.content-flow {
  max-width: 850px;
}

.content-flow h2 {
  margin-top: 48px;
}

.content-flow h2:first-child {
  margin-top: 0;
}

.content-flow h3 {
  margin-top: 28px;
}

.content-flow li + li {
  margin-top: 7px;
}

.data-table {
  width: 100%;
  margin: 24px 0;
  border-collapse: collapse;
  border: 1px solid var(--line);
  background: var(--surface);
  table-layout: fixed;
}

.data-table th,
.data-table td {
  padding: 14px 16px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.data-table th {
  background: var(--surface-muted);
  font-size: 15px;
}

.data-table th:first-child {
  width: 22%;
}

.data-table th:nth-child(2) {
  width: 45%;
}

.data-table th,
.data-table td {
  overflow-wrap: anywhere;
}

.legal-grid {
  display: grid;
  grid-template-columns: minmax(160px, 0.34fr) minmax(0, 0.66fr);
  margin: 24px 0;
  border-top: 1px solid var(--line);
}

.legal-grid dt,
.legal-grid dd {
  margin: 0;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.legal-grid dt {
  padding-right: 20px;
  color: var(--muted);
  font-weight: 650;
}

.placeholder {
  display: inline-block;
  max-width: 100%;
  padding: 1px 6px;
  border: 1px dashed #c4770a;
  border-radius: 4px;
  background: var(--amber-soft);
  color: #713f00;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.support-card {
  padding: 22px;
}

.support-card p:last-child {
  margin-bottom: 0;
}

.support-card .label {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--ink);
  color: #d8e0ea;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: start;
  padding-top: 38px;
  padding-bottom: 38px;
}

.site-footer p {
  margin-bottom: 5px;
}

.site-footer a {
  color: #d9ecff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px 18px;
}

.small-print {
  color: #9eacbd;
  font-size: 13px;
}

@media (max-width: 800px) {
  body {
    font-size: 16px;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 28px;
  }

  .header-inner {
    min-height: 70px;
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding-top: 11px;
    padding-bottom: 10px;
  }

  .site-nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 1px;
  }

  .site-nav a {
    flex: 0 0 auto;
  }

  .intro-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
    padding-top: 50px;
    padding-bottom: 48px;
  }

  .intro-art {
    grid-row: 1;
    width: 92px;
    height: 92px;
    border-radius: 20px;
  }

  .quick-grid,
  .permission-grid,
  .support-grid,
  .steps {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-inner,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-inner {
    display: flex;
  }

  .footer-inner {
    display: flex;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .data-table,
  .data-table tbody,
  .data-table tr,
  .data-table td {
    display: block;
    width: 100%;
  }

  .data-table {
    border-bottom: 0;
  }

  .data-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .data-table tr {
    border-bottom: 1px solid var(--line);
  }

  .data-table td {
    position: relative;
    min-height: 48px;
    padding: 12px 14px 12px 132px;
    border: 0;
    border-bottom: 1px solid #e8edf3;
  }

  .data-table td:last-child {
    border-bottom: 0;
  }

  .data-table td::before {
    position: absolute;
    top: 12px;
    left: 14px;
    width: 104px;
    color: var(--ink);
    font-size: 13px;
    font-weight: 750;
  }

  .data-table td:first-child::before {
    content: "Daten";
  }

  .data-table td:nth-child(2)::before {
    content: "Verarbeitung";
  }

  .data-table td:nth-child(3)::before {
    content: "Zweck";
  }
}

@media (max-width: 520px) {
  .shell {
    width: min(100% - 28px, 1120px);
  }

  h1 {
    font-size: 33px;
    overflow-wrap: anywhere;
  }

  h2 {
    font-size: 26px;
  }

  .brand-subtitle {
    display: none;
  }

  .site-nav {
    gap: 4px;
  }

  .site-nav a {
    padding: 8px;
    font-size: 14px;
  }

  .section {
    padding: 50px 0;
  }

  .lead {
    font-size: 18px;
  }

  .quick-link {
    grid-template-columns: 38px minmax(0, 1fr) auto;
    padding: 17px;
  }

  .quick-link .symbol,
  .permission-item .symbol {
    width: 38px;
    height: 38px;
  }

  .button-link {
    width: 100%;
  }

  .legal-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .legal-grid dt {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .legal-grid dd {
    padding-top: 4px;
  }
}

@media print {
  .site-header,
  .draft-banner,
  .button-link,
  .skip-link {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
    font-size: 11pt;
  }

  .shell {
    width: 100%;
  }

  .page-intro,
  .section,
  .section.alt {
    border: 0;
    background: #fff;
  }

  .intro-inner,
  .section {
    padding: 18px 0;
  }

  .intro-art {
    width: 70px;
    height: 70px;
  }

  a {
    color: #000;
  }
}
