:root {
  color-scheme: light;
  font-family: "Century Gothic","DM Sans", sans-serif;
  color: #2b3020;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;

}

.page-shell {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
  overflow: hidden;
}

.maintenance-card {
  position: relative;
  isolation: isolate;
  width: min(100%, 68rem);
  min-height: min(44rem, calc(100svh - 2rem));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.75fr);
  grid-template-rows: auto 1fr auto;
  gap: 1.5rem 3rem;
  padding: clamp(1.5rem, 5vw, 4.5rem);
  border: 1px solid rgba(45, 70, 58, 0.12);
  border-radius: clamp(1.5rem, 4vw, 2.75rem);
  background: rgba(255, 253, 248, 0.8);
  box-shadow: 0 2rem 6rem rgba(45, 55, 47, 0.11);
  backdrop-filter: blur(12px);
}

.maintenance-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 1rem;
  border: 1px dashed rgba(61, 99, 78, 0.13);
  border-radius: calc(clamp(1.5rem, 4vw, 2.75rem) - 0.65rem);
  pointer-events: none;
}

.status-pill {
  grid-column: 1 / -1;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: rgba(169, 194, 37, 0.16);
  color: #56620e;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-dot {
  width: 0.55rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #a9c225;
  box-shadow: 0 0 0 0.3rem rgba(169, 194, 37, 0.2);
  animation: pulse 2.2s ease-in-out infinite;
}

.content {
  align-self: center;
  max-width: 40rem;
  padding-block: 2rem;
}

.eyebrow {
  margin: 0 0 1rem;
  color: #718213;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  max-width: 10ch;
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
  text-wrap: balance;
}

.message {
  max-width: 35rem;
  margin: 1.75rem 0 0;
  color: #627069;
  font-size: clamp(1rem, 2vw, 1.16rem);
  line-height: 1.75;
}

.thanks {
  margin: 1.5rem 0 0;
  color: #31453b;
  font-weight: 600;
}

.logo-wrap {
  position: relative;
  align-self: center;
  justify-self: center;
  width: min(27rem, 38vw);
  padding: clamp(0.75rem, 2vw, 1.5rem);
  border-radius: 2rem;
  background: #fff;
  box-shadow: 0 1.5rem 4rem rgba(64, 73, 24, 0.09);
}

.brand-logo {
  display: block;
  width: 100%;
  height: auto;
}

footer {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(45, 70, 58, 0.12);
  color: #7c867f;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

footer span {
  color: #a9c225;
}

@keyframes pulse {
  50% { box-shadow: 0 0 0 0.55rem rgba(169, 194, 37, 0); }
}

@media (max-width: 760px) {
  .page-shell {
    padding: 0;
  }

  .maintenance-card {
    min-height: 100svh;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto 1fr auto;
    gap: 1rem;
    padding: 1.5rem;
    border: 0;
    border-radius: 0;
  }

  .maintenance-card::before {
    inset: 0.65rem;
    border-radius: 1.25rem;
  }

  .logo-wrap {
    grid-row: 2;
    width: min(18rem, 76vw);
    margin-block: 0.5rem;
    padding: 0.6rem;
    border-radius: 1.25rem;
  }

  .content {
    grid-row: 3;
    align-self: start;
    padding: 0;
  }

  h1 {
    font-size: clamp(2.9rem, 15vw, 4.5rem);
  }

  .message {
    margin-top: 1.25rem;
    line-height: 1.6;
  }

  footer {
    grid-row: 4;
    padding: 1rem 0 0.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
