/* Reset */
* { margin:0; padding:0; box-sizing:border-box; }

/* Page setup */
html, body {
  height: 100%;
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: linear-gradient(135deg, #f5f5f5, #e7e7e7);
  color: #222;
}

/* Center content */
.container {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

/* Inner content */
.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 3rem 3.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(8px);
}

/* Logo */
.logo { width: 120px; height: auto; object-fit: contain; }

/* Headline */
h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 600; color: #111; }

/* Subtext */
p  { font-size: clamp(1rem, 2.5vw, 1.25rem); color: #333; opacity: .9; }

/* Subtle fade-in */
body { animation: fadeIn .8s ease-in-out; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
