:root {
  --atlas-blue: #32334b;
  --atlas-light-blue: #575a6a;
  --atlas-orange: #f7a400;
  --surface: #f6f6f6;
  --text: #1f2430;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  font-family: "Mukta", "Segoe UI", sans-serif;
  color: var(--text);
}

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 10% 15%, rgba(247, 164, 0, 0.2), transparent 35%),
    radial-gradient(circle at 90% 85%, rgba(87, 90, 106, 0.25), transparent 40%),
    linear-gradient(140deg, #fdfdfd 0%, #eceff4 100%);
}

.maintenance-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.maintenance-card {
  width: min(680px, 100%);
  background: var(--surface);
  border-top: 6px solid var(--atlas-orange);
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(50, 51, 75, 0.18);
  padding: 2rem;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.brand-logo {
  width: 72px;
  height: 72px;
  border-radius: 14px;
  flex: 0 0 auto;
  box-shadow: 0 10px 24px rgba(50, 51, 75, 0.16);
}

.brand-copy {
  display: flex;
  flex-direction: column;
}

.brand-name {
  margin: 0;
  color: var(--atlas-blue);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  line-height: 1;
  font-weight: 800;
}

.eyebrow {
  margin: 0.2rem 0 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--atlas-light-blue);
}

h1 {
  margin: 0.35rem 0 0;
  color: var(--atlas-blue);
  font-size: clamp(1.9rem, 4.2vw, 2.9rem);
  line-height: 1.05;
}

.message {
  margin: 1rem 0 0;
  font-size: 1.12rem;
  line-height: 1.55;
  max-width: 58ch;
}

.status-row {
  margin-top: 1.4rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: #ffffff;
  border: 1px solid rgba(50, 51, 75, 0.15);
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  color: var(--atlas-blue);
  font-weight: 600;
}

.pulse {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--atlas-orange);
  box-shadow: 0 0 0 rgba(247, 164, 0, 0.75);
  animation: pulse 1.6s ease-out infinite;
}

.footnote {
  margin: 1.1rem 0 0;
  color: var(--atlas-light-blue);
  font-size: 1rem;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(247, 164, 0, 0.7);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(247, 164, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(247, 164, 0, 0);
  }
}

@media (max-width: 600px) {
  .maintenance-card {
    padding: 1.45rem;
  }

  .brand-lockup {
    gap: 0.8rem;
  }

  .brand-logo {
    width: 58px;
    height: 58px;
    border-radius: 12px;
  }

  .message {
    font-size: 1.02rem;
  }
}
