* { box-sizing: border-box; }

html, body {
  height: 100%;
  min-height: 100svh;
  margin: 0;
  padding: 0;
  overflow-y: auto;
  overscroll-behavior: none;
  background-color: #0a0e17;
  touch-action: manipulation; /* verhindert Doppeltipp-Zoom */
}

body {
  position: relative;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #e5e7eb;
}

/* Safe Area oben exakt einfärben */
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: env(safe-area-inset-top);
  background: #0a0e17;
  z-index: 1;
  pointer-events: none;
}

#bg-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  display: block;
  transform: translateZ(0);
  will-change: transform;
  pointer-events: none;
}

.wrap {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1rem;
}

.card {
  display: inline-block;
  max-width: 560px;
  width: auto;
  text-align: center;
  padding: 24px clamp(18px, 4vw, 28px);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  backdrop-filter: blur(8px) saturate(120%);
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
  margin: 0;
}

.badge {
  display: inline-block;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #93c5fd;
  background: rgba(147,197,253,.12);
  border: 1px solid rgba(147,197,253,.3);
  padding: 6px 10px;
  border-radius: 999px;
  margin-inline: auto;
}

.domain {
  margin: 12px 0 6px;
  font-size: clamp(32px, 6vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  background: linear-gradient(90deg, #60a5fa, #a78bfa, #f472b6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 18px rgba(99,102,241,0.18);
  word-break: break-word;
}

.subtitle {
  margin: 6px 0 10px;
  color: #cbd5e1;
  font-size: clamp(15px, 2.6vw, 18px);
}

.contact {
  margin: 8px 0 0;
  font-size: clamp(14px, 2.4vw, 17px);
  color: #94a3b8;
}

.footer {
  margin-top: 20px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 12px;
  color: #94a3b8;
  text-align: center;
}

@media (max-width: 520px) {
  .card { max-width: 90%; padding: 20px 16px; }
}

@media (max-width: 380px) {
  .domain { font-size: clamp(26px, 8.4vw, 36px); }
  .subtitle, .contact { font-size: 14px; }
}