:root{
  --bg0:#0b1020;
  --bg1:#0e1630;
  --card: rgba(255,255,255,.08);
  --card2: rgba(255,255,255,.10);
  --text:#eef2ff;
  --muted: rgba(238,242,255,.72);
  --line: rgba(238,242,255,.14);
  --accent:#7c3aed;
  --accent2:#22c55e;
  --shadow: 0 16px 60px rgba(0,0,0,.35);
  --radius: 22px;
  --radius2: 16px;
  --max: 980px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:var(--font);
  color:var(--text);
  background: radial-gradient(1200px 700px at 20% 10%, #1b2a6d 0%, transparent 60%),
              radial-gradient(900px 600px at 80% 30%, #3b1268 0%, transparent 55%),
              linear-gradient(180deg, var(--bg0), var(--bg1));
  overflow-x:hidden;
}

.bg{
  position:fixed; inset:-40px;
  background:
    radial-gradient(800px 520px at 10% 80%, rgba(34,197,94,.18), transparent 60%),
    radial-gradient(900px 520px at 90% 10%, rgba(124,58,237,.22), transparent 60%);
  filter: blur(22px);
  opacity:.9;
  pointer-events:none;
  z-index:-1;
  padding-bottom: 300px !important;
  margin-bottom: 300px !important;
}

.wrap{
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px 18px 40px;
}

.top{
  display:flex;
  gap:18px;
  align-items:flex-start;
  justify-content:space-between;
  margin: 10px 0 18px;
}

.brand{
  display:flex;
  gap:14px;
  align-items:center;
}

.mark{
  width:54px; height:54px;
  display:grid; place-items:center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(124,58,237,.95), rgba(34,197,94,.65));
  box-shadow: var(--shadow);
  font-weight:800;
  letter-spacing:.5px;
}

.kicker{
  margin:0;
  color: var(--muted);
  font-size: 12px;
  letter-spacing:.16em;
  text-transform:uppercase;
}

h1{
  margin: 2px 0 2px;
  font-size: 28px;
  line-height: 1.1;
}

.sub{
  margin:0;
  color: var(--muted);
  font-size: 14px;
}

.status{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.pill{
  display:inline-flex;
  align-items:center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(124,58,237,.18);
  border: 1px solid rgba(124,58,237,.35);
  color: rgba(238,242,255,.92);
  font-weight:600;
  font-size: 13px;
}

.dot{
  width:10px; height:10px;
  border-radius: 999px;
  background: var(--accent2);
  box-shadow: 0 0 0 6px rgba(34,197,94,.12);
  animation: pulse 1.6s ease-in-out infinite;
}

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

@keyframes pulse{
  0%,100%{ transform:scale(1); opacity:.9}
  50%{ transform:scale(1.18); opacity:1}
}

.card{
  background: linear-gradient(180deg, var(--card), rgba(255,255,255,.06));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}

.card-head{
  padding: 22px 22px 10px;
}

/* stärkere Glasfläche */
.card,
.info,
.contact,
.footer-inner{
  background: rgba(10, 14, 30, 0.55);   /* statt sehr transparent */
  border: 1px solid rgba(238,242,255,.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}


h2{
  margin:0 0 8px;
  font-size: 22px;
}

.muted{ color: var(--muted); }
.small{ font-size: 12.5px; }

.grid{
  display:grid;
  grid-template-columns: 1.3fr .9fr;
  gap: 12px;
  padding: 0 12px 12px;
}

.info, .contact{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(238,242,255,.10);
  border-radius: var(--radius2);
  padding: 18px;
}

h3{
  margin: 0 0 10px;
  font-size: 15px;
  letter-spacing: .02em;
}

.big{
  font-size: 20px;
  font-weight: 750;
  margin: 6px 0 6px;
}

.actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top: 14px;
}

.btn{
  appearance:none;
  border:1px solid rgba(238,242,255,.14);
  background: rgba(255,255,255,.06);
  color: var(--text);
  padding: 10px 14px;
  border-radius: 12px;
  cursor:pointer;
  font-weight:650;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  gap:10px;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

.btn:hover{ transform: translateY(-1px); border-color: rgba(238,242,255,.22); }
.btn:active{ transform: translateY(0px); }

.primary{
  border-color: rgba(124,58,237,.45);
  background: linear-gradient(135deg, rgba(124,58,237,.85), rgba(124,58,237,.35));
}

.ghost{
  background: rgba(255,255,255,.04);
}

.note{
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(238,242,255,.10);
}

.list{
  display:flex;
  flex-direction:column;
  gap: 12px;
}

.row{
  display:flex;
  gap:12px;
  align-items:flex-start;
}

.icon{
  width:34px; height:34px;
  border-radius: 12px;
  display:grid; place-items:center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(238,242,255,.10);
  flex: 0 0 auto;
    box-shadow: 0 0 0 1px rgba(238,242,255,.12),
              0 6px 20px rgba(124,58,237,.25);
}

.icon-img{
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1); /* falls Icon dunkel ist */
  opacity: .9;
}


.label{
  margin:0;
  font-size: 12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color: rgba(238,242,255,.6);
}

.value{
  margin: 2px 0 0;
  font-size: 14.5px;
  line-height: 1.45;
}

.link{
  color: rgba(238,242,255,.9);
  text-decoration: none;
  border-bottom: 1px dashed rgba(238,242,255,.28);
}
.link:hover{ border-bottom-color: rgba(238,242,255,.55); }

.mini{
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(238,242,255,.10);
}

.footer{
  margin-top: 14px;
  padding: 16px 6px 0;
}

.footer-inner{
  display:flex;
  gap: 10px;
  justify-content: space-between;
  align-items:center;
  flex-wrap:wrap;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(238,242,255,.10);
  background: rgba(255,255,255,.04);
}

.toast{
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  background: rgba(10,14,30,.85);
  border: 1px solid rgba(238,242,255,.14);
  color: var(--text);
  padding: 10px 12px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events:none;
  transition: opacity .18s ease, transform .18s ease;
  max-width: min(520px, calc(100% - 24px));
  text-align:center;
}

.toast.show{
  opacity: 1;
  transform: translateX(-50%) translateY(-2px);
}

.reveal{
  opacity: 0;
  transform: translateY(10px);
  animation: reveal .55s ease forwards;
}
.reveal:nth-child(2){ animation-delay: .06s }
.reveal:nth-child(3){ animation-delay: .12s }
.reveal:nth-child(4){ animation-delay: .18s }

@keyframes reveal{
  to { opacity: 1; transform: translateY(0); }
}

.sep{
  border:0;
  height:1px;
  background: rgba(238,242,255,.12);
  margin: 18px 0;
}

/* Impressum content spacing */
.impressum p{ line-height: 1.6; }
.impressum h3{ margin-top: 18px; }

/* Responsive */
@media (max-width: 860px){
  .grid{ grid-template-columns: 1fr; }
  h1{ font-size: 26px; }
  .mark {
    display: none;
  }
}

.p15
{
  padding: 15px;
}