:root {
  --bg-dark: #07111f;
  --bg-mid: #0e1a2d;
  --panel: rgba(10, 20, 35, 0.8);
  --panel-border: rgba(255, 255, 255, 0.08);
  --primary: #5cc8ff;
  --primary-strong: #2aa7ff;
  --secondary: #ffbf69;
  --text: #edf6ff;
  --muted: #b6c7d9;
  --shadow: rgba(11, 20, 31, 0.45);
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  min-height: 100%;
  width: 100%;
  font-family: "Manrope", sans-serif;
  background: radial-gradient(circle at top, #102541 0%, var(--bg-dark) 42%, #040b13 100%);
  color: var(--text);
}

body {
  min-height: 100vh;
  display: grid;
  place-items: center;
}

.page-shell {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 20px;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.6;
}

.orb-one {
  width: 260px;
  height: 260px;
  background: rgba(92, 200, 255, 0.22);
  top: 12%;
  left: 16%;
}

.orb-two {
  width: 360px;
  height: 360px;
  background: rgba(255, 191, 105, 0.12);
  right: 12%;
  bottom: 8%;
}

.maintenance-card {
  position: relative;
  z-index: 1;
  width: min(640px, 100%);
  padding: 38px 28px 32px;
  border-radius: 28px;
  background: rgba(12, 18, 28, 0.72);
  border: 1px solid var(--panel-border);
  box-shadow: 0 25px 80px var(--shadow);
  backdrop-filter: blur(10px);
  text-align: center;
}

.brand-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}

.brand-logo {
  max-height: 84px;
  width: auto;
  display: block;
}

.brand-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  font-weight: 800;
  background: rgba(92, 200, 255, 0.12);
  color: var(--primary);
  border: 1px solid rgba(92, 200, 255, 0.22);
}

.status-pill {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  font-weight: 700;
  background: rgba(255, 191, 105, 0.12);
  border: 1px solid rgba(255, 191, 105, 0.2);
  color: var(--secondary);
}

h1 {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
}

.lead {
  margin: 18px auto 0;
  max-width: 540px;
  font-size: 1.04rem;
  line-height: 1.8;
  color: var(--muted);
}

.info-box {
  margin-top: 26px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  text-align: left;
}

.info-box p {
  margin: 8px 0;
  color: var(--text);
  font-size: 0.98rem;
}

.info-box strong {
  color: #ffffff;
}

.cta-row {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  color: #03131f;
  box-shadow: 0 18px 28px rgba(42, 167, 255, 0.25);
}

.button.secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.small-note {
  margin-top: 26px;
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 560px) {
  .maintenance-card {
    padding: 30px 18px 28px;
    border-radius: 22px;
  }

  .cta-row {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}
