:root{
  --ui-color-surface:#fff;
  --ui-color-text:#000;
  --ui-color-text-secondary:#5a5e64;
  --ui-font-family-base:"Segoe UI",Arial,sans-serif;
}

*,*::before,*::after{
  box-sizing:border-box;
}

html{
  background:var(--ui-color-surface);
  color:var(--ui-color-text);
  color-scheme:light;
}

body{
  margin:0;
  background:var(--ui-color-surface);
  color:var(--ui-color-text);
  font-family:var(--ui-font-family-base);
}

.ADGlobalErrorPage{
  min-height:100vh;
  min-height:100svh;
  display:grid;
  place-items:center;
  padding:clamp(28px,7vw,96px);
}

.ADGlobalErrorHero{
  width:min(760px,100%);
  margin:0 auto;
  padding:64px 0;
  text-align:center;
}

.ADComingSoonLogo{
  display:block;
  width:clamp(72px,10vw,96px);
  height:auto;
  margin:0 auto 28px;
}

.ADGlobalErrorTitle{
  margin:0;
  color:var(--ui-color-text);
  font-family:var(--ui-font-family-base);
  font-size:clamp(42px,8vw,86px);
  font-weight:700;
  line-height:.94;
  letter-spacing:-.06em;
}

.ADGlobalErrorBody{
  margin:24px auto 0;
  color:var(--ui-color-text-secondary);
  font-size:24px;
  line-height:1.38;
}

@media (max-width:980px){
  .ADGlobalErrorHero{
    padding:42px 0;
  }

  .ADGlobalErrorBody{
    font-size:20px;
  }
}
