    * {
      box-sizing: border-box;
    }
    main.content {
        max-width: 640px;
        width: 100%;
}
    body {
  margin: 0;
  background: radial-gradient(#041020, #000);
  color: #fff;
  font-family: 'Orbitron', sans-serif;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
    header img {
      width: 300px;
      margin-bottom: 1rem;
    }
    h1 {
      color: #ff4fd8;
      font-size: 1.8rem;
      margin-top: 2rem;
    }
    p {
      max-width: 600px;
      color: #ccc;
      font-size: 1.1rem;
      line-height: 1.7;
      text-align: left;
    }
    ul {
      max-width: 600px;
      text-align: left;
      padding: 0;
      list-style: none;
      color: #ccc;
    }
    ul li {
      margin: 0.5rem 0;
      padding-left: 2.0rem;
      position: relative;
    }
    ul li::before {
      content: "✅";
      position: absolute;
      left: 0;
      margin-right: 0.5rem;
    }
    .cta-button {
      background: linear-gradient(135deg, #4fb1ff, #ff4fd8);
      border: none;
      padding: 1rem 2rem;
      border-radius: 999px;
      color: white;
      font-size: 1rem;
      cursor: pointer;
      margin: 2rem 0;
      text-decoration: none;
      display: inline-block;
      transition: transform 0.3s ease;
    }
    .cta-button:hover {
      transform: scale(1.05);
    }
    footer {
      margin-top: 3rem;
      font-size: 0.9rem;
      color: #666;
    }
    details {
      margin-top: 2rem;
      max-width: 600px;
      color: #aaa;
    }
    .top-right-link {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #4fb1ff, #ff4fd8);
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  font-family: 'Orbitron', sans-serif;
  transition: transform 0.3s ease;
}
.top-right-link:hover {
  transform: scale(1.05);
}
    @media screen and (max-width: 600px) {
      body {
        padding: 1rem;
      }
      header img {
        width: 220px;
      }
    }
.proof-wrap {
  max-width: 900px;
  margin: 2rem auto 0;
}

.proof-wrap h1 {
  color: #ff4fd8;
  font-size: 1.6rem;
  margin: 0 0 1rem;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

@media (max-width: 900px) {
  .proof-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 600px) {
  .proof-grid { grid-template-columns: 1fr; }
}

.proof-card {
  position: relative;
  background: linear-gradient(135deg, rgba(79,177,255,0.12), rgba(255,79,216,0.12));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 1rem;
  backdrop-filter: blur(4px);
}

.proof-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.15);
  box-shadow: 0 0 0 4px rgba(255,79,216,0.1);
}


.proof-name {
  font-weight: 700;
  letter-spacing: 0.3px;
}

.proof-meta {
  opacity: 0.7;
  font-size: 0.9rem;
}

.proof-card blockquote {
  margin: 0;
  color: #ccc;
  line-height: 1.6;
  font-size: 1rem;
}
.proof-card figcaption {
  display: flex;
  flex-direction: column; /* neu: stapelt Name und Meta untereinander */
  align-items: flex-start; /* linksbündig */
  gap: 0.2rem; /* kleiner Abstand */
  margin-bottom: 0.75rem;
}