*{margin:0;padding:0;box-sizing:border-box}
body{
  font-family:'Poppins',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  background:linear-gradient(145deg,#001e3c 0%,#0050b3 55%,#0078d4 100%);
  color:#ffffff;
  min-height:100vh;
  min-height:100dvh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:24px;
  line-height:1.6;
  position:relative;
  overflow-x:hidden;
}
.szene{position:fixed;inset:0;overflow:clip;pointer-events:none;z-index:0}
.glow{position:absolute;border-radius:50%;filter:blur(2px)}
.glow-a{top:-120px;right:-120px;width:560px;height:560px;background:radial-gradient(circle,rgba(0,179,134,.18) 0%,transparent 70%)}
.glow-b{bottom:-100px;left:-100px;width:460px;height:460px;background:radial-gradient(circle,rgba(0,120,212,.25) 0%,transparent 70%)}
.karte{position:relative;z-index:1;max-width:560px;width:100%;text-align:center;display:flex;flex-direction:column;align-items:center}
.logo-schild{
  display:inline-flex;
  background:#ffffff;
  border-radius:18px;
  padding:16px 26px;
  margin-bottom:40px;
  box-shadow:0 12px 30px rgba(0,10,30,.35);
}
.logo{height:56px;width:auto;display:block}
.abzeichen{
  display:inline-block;
  background:rgba(0,179,134,.15);
  color:#5effd9;
  border:1px solid rgba(0,179,134,.4);
  border-radius:50px;
  padding:6px 20px;
  font-size:.82rem;
  font-weight:600;
  letter-spacing:.4px;
  text-transform:uppercase;
  margin-bottom:1.6rem;
}
h1{
  font-size:clamp(1.7rem,4.2vw,2.6rem);
  font-weight:600;
  line-height:1.18;
  letter-spacing:-.5px;
  margin-bottom:18px;
}
.beschreibung{
  font-size:1.08rem;
  color:rgba(255,255,255,.88);
  max-width:440px;
  margin:0 auto;
}
.status{
  margin-top:40px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.16);
  border-radius:100px;
  padding:10px 20px;
  font-size:.85rem;
  color:rgba(255,255,255,.85);
}
.status-punkt{
  width:8px;
  height:8px;
  border-radius:50%;
  background:#00b386;
  box-shadow:0 0 0 0 rgba(0,179,134,.6);
  animation:puls 1.8s ease-out infinite;
  flex-shrink:0;
}
@keyframes puls{
  0%{box-shadow:0 0 0 0 rgba(0,179,134,.55)}
  70%{box-shadow:0 0 0 9px rgba(0,179,134,0)}
  100%{box-shadow:0 0 0 0 rgba(0,179,134,0)}
}
@media (prefers-reduced-motion: reduce){
  .status-punkt{animation:none}
}
@media (max-width:480px){
  h1{font-size:1.6rem}
  .beschreibung{font-size:1rem}
}