:root {
  color-scheme: dark;
  font-family: Arial, Helvetica, sans-serif;
  background: #050505;
  color: #f7f7f7;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: #050505;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    #050505;
  background-size: 64px 64px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 2;
  min-height: 44px;
  padding: 12px 16px;
  color: #050505;
  background: #ffffff;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

main {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 40px 20px;
}

.status {
  width: min(100%, 720px);
  text-align: center;
}

.brand {
  display: inline-flex;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 36px;
}

.brand img {
  display: block;
  width: 148px;
  height: auto;
}

.eyebrow {
  margin: 0 0 18px;
  color: #a5a5a5;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(36px, 7vw, 68px);
  line-height: 1.02;
  letter-spacing: 0;
}

.description {
  max-width: 620px;
  margin: 28px auto 0;
  color: #c9c9c9;
  font-size: 18px;
  line-height: 1.65;
}

.back-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  margin-top: 36px;
  padding: 12px 20px;
  border: 1px solid #f7f7f7;
  color: #050505;
  background: #f7f7f7;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
}

.back-link:hover {
  color: #f7f7f7;
  background: #050505;
}

a:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 4px;
}

@media (max-width: 520px) {
  main {
    padding: 32px 18px;
  }

  .brand {
    margin-bottom: 28px;
  }

  .description {
    font-size: 16px;
  }

  .back-link {
    width: 100%;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .status {
    animation: reveal 500ms ease-out both;
  }

  @keyframes reveal {
    from {
      opacity: 0;
      transform: translateY(12px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
