/* MWRI maintenance / coming-soon page */
:root {
  --m-bg: #f5f7fa;
  --m-blue: #006bb4;
  --m-blue-dark: #004a7c;
  --m-navy: #1a2744;
  --m-text: #69707d;
  --m-orange: #e8a317;
  --m-font: "Inter", "Segoe UI", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html, body {
  margin: 0;
  min-height: 100%;
}
body {
  font-family: var(--m-font);
  background: var(--m-bg);
  color: var(--m-text);
  -webkit-font-smoothing: antialiased;
}

.maintenance-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
}

.maintenance-card {
  width: min(520px, 100%);
  text-align: center;
}

.maintenance-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 28px;
}
.maintenance-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.maintenance-eyebrow {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--m-blue);
}

.maintenance-title {
  margin: 0 0 16px;
  font-size: clamp(28px, 5vw, 36px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--m-navy);
}

.maintenance-message {
  margin: 0 auto 28px;
  max-width: 420px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--m-text);
}
.maintenance-message p {
  margin: 0 0 0.75em;
}
.maintenance-message p:last-child {
  margin-bottom: 0;
}

.maintenance-btn {
  display: inline-block;
  padding: 12px 28px;
  border: 0;
  border-radius: 4px;
  background: var(--m-blue-dark);
  color: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s ease;
}
.maintenance-btn:hover {
  background: var(--m-blue);
  color: #fff;
  text-decoration: none;
}

.maintenance-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--m-navy);
  text-decoration: none;
}
.maintenance-email:hover {
  color: var(--m-blue);
  text-decoration: none;
}
.maintenance-email svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--m-blue);
  stroke-width: 1.8;
}
