:root {
  --color-bg: #f6f3f7;
  --color-surface: #ffffff;
  --color-border: #e7e5ef;
  --color-heading: #1d2f68;
  --color-text: #3f4a75;
  --color-muted: #7a83a8;
  --color-primary: #1f66d1;
  --color-primary-dark: #184ea0;
  --color-accent: #f6c452;
  --color-accent-dark: #e5af35;
  --shadow-card: 0 24px 60px rgba(33, 45, 95, 0.18);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
}

body {
  font-family: "Nunito", system-ui, sans-serif;
  color: var(--color-text);
  background:
    radial-gradient(circle at 18% 20%, rgba(31, 102, 209, 0.18), transparent 38rem),
    radial-gradient(circle at 82% 78%, rgba(246, 196, 82, 0.22), transparent 36rem),
    linear-gradient(180deg, #ffffff 0%, var(--color-bg) 100%);
  overflow-x: hidden;
}

/* Decorative background orbs */
.bg-decor {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  animation: float 14s ease-in-out infinite;
}

.orb-1 {
  width: 360px; height: 360px;
  top: -80px; left: -100px;
  background: radial-gradient(circle, rgba(31, 102, 209, 0.55), transparent 70%);
}

.orb-2 {
  width: 280px; height: 280px;
  bottom: -60px; right: -80px;
  background: radial-gradient(circle, rgba(246, 196, 82, 0.6), transparent 70%);
  animation-delay: -5s;
}

.orb-3 {
  width: 220px; height: 220px;
  top: 40%; right: 12%;
  background: radial-gradient(circle, rgba(115, 141, 240, 0.45), transparent 70%);
  animation-delay: -9s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(20px, -28px); }
}

/* Main layout */
.maintenance {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.25rem;
}

.maintenance-card {
  width: 100%;
  max-width: 720px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 28px;
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-card);
  text-align: center;
}

.brand {
  display: block;
  margin-bottom: 1.5rem;
}

.brand img {
  height: clamp(72px, 10vw, 110px);
  width: auto;
  max-width: 100%;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(31, 102, 209, 0.1);
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}

.status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow: 0 0 0 0 rgba(31, 102, 209, 0.7);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(31, 102, 209, 0.55); }
  70%  { box-shadow: 0 0 0 10px rgba(31, 102, 209, 0); }
  100% { box-shadow: 0 0 0 0 rgba(31, 102, 209, 0); }
}

h1 {
  margin: 0 0 1rem;
  color: var(--color-heading);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
}

.lead {
  margin: 0 auto;
  max-width: 520px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--color-text);
}

/* Responsive */
@media (max-width: 540px) {
  .maintenance-card {
    padding: 2.25rem 1.5rem;
    border-radius: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .orb, .status-dot { animation: none; }
}
