/* iPrintHub.de - Baustelle (Fix) */
:root{
  --bg1:#031024;
  --bg2:#061a3a;
  --blue:#0B64F4;
  --blue2:#19A7FF;
  --text:#F3F7FF;
  --muted:rgba(243,247,255,.72);
  --line:rgba(255,255,255,.12);
  --card:rgba(7,16,34,.62);
  --shadow:0 24px 90px rgba(0,0,0,.52);
  --r:18px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background: radial-gradient(1200px 700px at 30% 20%, rgba(25,167,255,.18), transparent 60%),
              radial-gradient(900px 600px at 70% 35%, rgba(11,100,244,.22), transparent 60%),
              linear-gradient(180deg,var(--bg1),var(--bg2));
  overflow-x:hidden;
}
#bg{position:fixed; inset:0; width:100%; height:100%; z-index:-1}

.wrap{
  min-height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:28px 0;
}

.card{
  width:min(860px, 92vw);
  padding:24px;
  border:1px solid var(--line);
  border-radius: var(--r);
  background: var(--card);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.card__head{
  display:flex;
  align-items:center;
  gap:12px;
  justify-content:space-between;
  flex-wrap:wrap;
  margin-bottom:10px;
}

.logo{
  height:90px;
  width:auto;
  display: block;
  margin: 20px;
}

.pill{
  display:inline-block;
  margin:0;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  color: var(--muted);
  font-weight:700;
  letter-spacing:.2px;
}

h1{
  margin:0 0 10px;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height:1.08;
  letter-spacing:-.4px;
}

.lead{
  margin:0 0 18px;
  color: var(--muted);
  font-size: 17px;
  line-height:1.6;
  max-width: 72ch;
}

.grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
  margin-top: 14px;
}

.box{
  border:1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.03);
  padding:16px;
}
h2{margin:0 0 8px; font-size:16px; letter-spacing:.2px}
.muted{color:var(--muted)}
.link{color:#DCEBFF; font-weight:800; text-decoration:none}
.link:hover{text-decoration:underline}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  height:44px; padding:0 16px;
  border-radius: 12px;
  border:1px solid transparent;
  text-decoration:none;
  font-weight:900;
  color:var(--text);
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  box-shadow: 0 16px 44px rgba(11,100,244,.30);
}
.btn:hover{filter:brightness(1.05)}

.foot{
  margin-top:18px;
  padding-top:14px;
  border-top:1px solid var(--line);
  color: var(--muted);
  display:flex;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
  font-size: 13px;
}

@media (max-width: 760px){
  .grid{grid-template-columns:1fr}
  .logo{height:48px}
  .card__head{justify-content:flex-start}
}
