/* Maintenance / app_offline — ported from coming-soon + nps-btn gold */

@font-face {
  font-family: ManchetteFine;
  src: url("/fonts/ManchetteFine-Regular.ttf");
  font-weight: 400;
}

@font-face {
  font-family: ManchetteFine;
  src: url("/fonts/ManchetteFine-Thin.ttf");
  font-weight: 300;
}

@font-face {
  font-family: ManchetteFine;
  src: url("/fonts/ManchetteFine-Medium.ttf");
  font-weight: 500;
}

@font-face {
  font-family: ManchetteFine;
  src: url("/fonts/ManchetteFine-SemiBold.ttf");
  font-weight: 700;
}

:root {
  --nps-nav: #363255;
  --nps-accent: #8f7494;
  --nps-page-bg: #ffffff;
  --nps-text-1: #2f2b4a;
  --nps-btn-radius-md: 12px;
  --nps-btn-gold: #f4c390;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 14px;
}

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  font-family: "ManchetteFine", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
  background: var(--nps-page-bg);
  color: var(--nps-text-1);
}

.maintenance {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 2rem 1rem;
  text-align: center;
  background: #ffffff;
}

.maintenance__inner {
  width: min(100%, 32rem);
  margin-inline: auto;
}

.maintenance__logo {
  display: block;
  width: auto;
  max-width: 9.5rem;
  height: auto;
  margin-inline: auto;
}

.maintenance__vector {
  display: block;
  width: 100%;
  max-width: 22rem;
  height: auto;
  margin: 1.5rem auto 0;
}

.maintenance__title {
  margin: 1.5rem 0 0;
  font-family: inherit;
  font-size: clamp(1.4rem, 2.8vw, 1.7rem);
  font-weight: 700;
  line-height: 1.4;
  color: var(--nps-text-1, #2f2b4a);
}

.maintenance__message {
  margin: 0.75rem 0 0;
  padding-inline: 0.5rem;
  font-family: inherit;
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  font-weight: 500;
  line-height: 1.75;
  color: var(--nps-text-2, #615975);
}

.maintenance__actions {
  margin-top: 1.75rem;
  display: flex;
  justify-content: center;
}

.nps-btn {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-family: inherit;
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
  text-decoration: none !important;
  cursor: pointer;
  border: 1px solid transparent;
  transition:
    background-color 0.15s ease,
    color 0.15s ease,
    border-color 0.15s ease,
    box-shadow 0.15s ease;
}

.nps-btn--gold {
  background-color: var(--nps-btn-gold) !important;
  color: #000 !important;
  border: 1px solid rgba(0, 0, 0, 0.12);
  font-weight: 700;
  border-radius: var(--nps-btn-radius-md);
  padding: 0.55rem 1.75rem;
}

.nps-btn--gold:hover,
.nps-btn--gold:focus {
  background: color-mix(in srgb, var(--nps-btn-gold) 88%, #fff 12%) !important;
  color: #000 !important;
}
