:root {
  --brand-blue: #2fa8ed;
  --brand-navy: #315c91;
  --ink: #18324f;
  --muted: #58708a;
  --line: rgba(49, 92, 145, 0.18);
  --surface: rgba(255, 255, 255, 0.86);
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(47, 168, 237, 0.18), transparent 34rem),
    linear-gradient(135deg, #f7fbff 0%, #ffffff 46%, #eef7fd 100%);
}

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

a {
  color: inherit;
}

.maintenance-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(1.25rem, 3vw, 3rem);
}

.hero {
  width: min(100%, 1120px);
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
}

.brand-panel {
  min-height: 360px;
  display: grid;
  place-items: center;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 24px 70px rgba(24, 50, 79, 0.12);
}

.brand-logo {
  display: block;
  width: min(100%, 520px);
  height: auto;
}

.content {
  max-width: 640px;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--brand-blue);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: var(--brand-navy);
  font-size: clamp(2.25rem, 5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.lead {
  margin: 1.4rem 0 0;
  max-width: 58ch;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  line-height: 1.7;
}

.status {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--ink);
  font-weight: 700;
  box-shadow: 0 10px 28px rgba(24, 50, 79, 0.08);
}

.status-dot {
  width: 0.68rem;
  height: 0.68rem;
  border-radius: 999px;
  background: var(--brand-blue);
  box-shadow: 0 0 0 0 rgba(47, 168, 237, 0.48);
  animation: pulse 1.8s ease-out infinite;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.1;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button-primary {
  background: var(--brand-blue);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(47, 168, 237, 0.26);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--brand-navy);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(49, 92, 145, 0.38);
  box-shadow: 0 10px 24px rgba(24, 50, 79, 0.08);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(47, 168, 237, 0.48);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(47, 168, 237, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(47, 168, 237, 0);
  }
}

@media (max-width: 860px) {
  .maintenance-page {
    place-items: start center;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .brand-panel {
    min-height: auto;
    padding: 1.4rem;
  }

  .content {
    max-width: none;
  }
}

@media (max-width: 520px) {
  .maintenance-page {
    padding: 1rem;
  }

  h1 {
    font-size: 2.18rem;
    line-height: 1.06;
  }

  .status,
  .button {
    width: 100%;
  }

  .actions {
    display: grid;
  }
}
