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

:root {
  --green: #00a878;
  --green-dark: #008f68;
  --text: #172033;
  --muted: #687386;
  --background: #f7faf9;
  --card: #ffffff;
  --border: #e6ece9;
}

body {
  min-height: 100vh;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 35%, rgba(0, 168, 120, 0.08), transparent 32%),
    var(--background);
}

.maintenance-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 34px 20px 24px;
}

.logo {
  align-self: flex-start;
  margin-left: max(0px, calc((100vw - 1180px) / 2));
  font-size: 25px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--text);
}

.logo strong {
  color: var(--green);
}

.maintenance-card {
  width: min(720px, 100%);
  margin: auto;
  padding: 52px 45px;
  text-align: center;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: 0 18px 55px rgba(25, 55, 45, 0.08);
}

.icon {
  width: 78px;
  height: 78px;
  margin: 0 auto 27px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--green);
  background: #e9f8f3;
}

.gear {
  display: block;
  font-size: 40px;
  line-height: 1;
  animation: rotate 5s linear infinite;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
}

h1 {
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1.12;
  letter-spacing: -1.5px;
  font-weight: 800;
}

h1 span {
  color: var(--green);
}

.message {
  max-width: 570px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.message + .message {
  margin-top: 5px;
}

.status {
  width: fit-content;
  margin: 29px auto 0;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid #dcefe9;
  border-radius: 999px;
  background: #f4fbf8;
  color: #437367;
  font-size: 13px;
  font-weight: 600;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(0, 168, 120, 0.12);
  animation: pulse 1.8s ease-in-out infinite;
}

footer {
  color: #98a19e;
  font-size: 12px;
}

footer span {
  color: var(--green-dark);
  font-weight: 700;
}

@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  50% {
    opacity: 0.45;
    transform: scale(0.8);
  }
}

@media (max-width: 600px) {
  .maintenance-page {
    padding: 25px 16px 20px;
  }

  .logo {
    margin-left: 0;
  }

  .maintenance-card {
    padding: 42px 24px;
  }

  h1 {
    letter-spacing: -1px;
  }

  .message {
    font-size: 15px;
  }
}
