* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: #000000;
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

.topline {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: #00D4B4;
  z-index: 100;
}

#swarm {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
}

.wrap {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 56px auto;
  padding: 64px 56px 72px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  border: 1px solid #16302E;
  border-radius: 16px;
}
.wrap.legal { max-width: 1060px; }
.wrap.faq { max-width: 900px; }

@media (max-width: 1000px) {
  .wrap { margin: 40px 28px; padding: 56px 44px 64px; }
}
@media (max-width: 600px) {
  .wrap { margin: 20px 14px; padding: 40px 22px 48px; }
}

.home { display: inline-block; margin-bottom: 40px; }
.home img { height: 48px; width: auto; display: block; }

h1.page-title {
  font-weight: 900;
  font-size: 40px;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 44px;
}
@media (max-width: 600px) {
  h1.page-title { font-size: 28px; margin-bottom: 30px; }
}

.back {
  display: inline-block;
  margin-top: 50px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7A8A89;
  text-decoration: none;
  transition: color 0.3s ease;
}
.back:hover { color: #00D4B4; }

/* ---- Legal two-column layout (Impressum / Privacy) ---- */
.cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  font-size: 13px;
  line-height: 1.75;
  color: #8A9A99;
  text-align: left;
}
.col { padding: 0 34px; }
.col:first-child { padding-left: 0; }
.col:last-child { padding-right: 0; }
.col + .col { border-left: 1px solid #14201F; }
.cols strong {
  display: block;
  margin-top: 16px;
  margin-bottom: 3px;
  font-weight: 500;
  color: #C5D2D1;
}
.col p:first-child,
.col strong:first-of-type { margin-top: 0; }
.cols a { color: #00D4B4; text-decoration: underline; }
.responsible {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid #14201F;
  font-size: 12px;
  color: #6A7A79;
}

@media (max-width: 600px) {
  .cols { grid-template-columns: 1fr; }
  .col { padding: 0; }
  .col + .col {
    border-left: none;
    padding-top: 24px;
    border-top: 1px solid #14201F;
  }
}

/* ---- FAQ accordion ---- */
.faq-item { border-bottom: 1px solid #14201F; }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 44px 24px 0;
  position: relative;
  font-size: 18px;
  font-weight: 400;
  color: #E5ECEB;
  transition: color 0.25s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: #00D4B4; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 26px;
  font-weight: 300;
  color: #00D4B4;
  transition: transform 0.25s ease;
}
.faq-item[open] summary::after { content: '–'; }
.faq-item[open] summary { color: #00D4B4; }
.faq-a {
  padding: 0 44px 28px 0;
  font-size: 15.5px;
  line-height: 1.85;
  color: #8A9A99;
}
.faq-a a { color: #00D4B4; text-decoration: underline; }
.faq-intro {
  font-size: 16px;
  color: #7A8A89;
  margin-bottom: 36px;
  letter-spacing: 0.02em;
}
@media (max-width: 600px) {
  .faq-item summary { font-size: 16px; padding: 20px 32px 20px 0; }
  .faq-a { font-size: 14.5px; padding-right: 0; }
}
