/* Premium static page styling */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, #f0f4ff, #e0e7ff);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}
.container {
  text-align: center;
}
.title {
  font-size: 2.5rem;
  color: #1e293b;
  margin-bottom: 0.5rem;
}
.subtitle {
  font-size: 1.25rem;
  color: #334155;
  margin-bottom: 1.5rem;
}
.cta-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #3b82f6;
  color: #fff;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}
.cta-button:hover {
  background: #2563eb;
}
