#seo-crawl-summary {
  min-height: 100vh;
  background: #0a0a0a;
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

#seo-crawl-summary header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 80rem;
  margin: 0 auto;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #2a2a2a;
}

#seo-crawl-summary header > a {
  color: #00ff88;
  font-size: 1.25rem;
  font-weight: 800;
  text-decoration: none;
}

#seo-crawl-summary nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

#seo-crawl-summary nav a {
  color: #cbd5e1;
  font-size: .875rem;
  text-decoration: none;
}

#seo-crawl-summary nav a[aria-current="page"] {
  color: #00ff88;
}

#seo-crawl-summary main {
  max-width: 80rem;
  margin: 0 auto;
  padding: 5rem 1.25rem;
}

#seo-crawl-summary h1 {
  max-width: 48rem;
  margin: 0;
  font-size: clamp(3rem, 8vw, 5.5rem);
  line-height: .96;
  letter-spacing: -.055em;
}

#seo-crawl-summary p {
  max-width: 42rem;
  margin: 1.75rem 0 0;
  color: #cbd5e1;
  font-size: 1.125rem;
  line-height: 1.75;
}

html.js #seo-crawl-summary {
  position: absolute;
  width: 1px;
  height: 1px;
  min-height: 0;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

#pre-react-splash {
  display: none;
}

html.js #pre-react-splash {
  position: fixed;
  inset: 0;
  z-index: 2147483647;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0f1419;
}

#pre-react-splash .pulse-splash-center {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#pre-react-splash .pulse-splash-mark {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

#pre-react-splash .pulse-splash-ring {
  position: absolute;
  width: 8rem;
  height: 8rem;
  border-radius: 9999px;
  background: rgba(0, 255, 135, .2);
  animation: pulse-splash-ring 1.5s cubic-bezier(0, 0, .2, 1) infinite;
}

#pre-react-splash img {
  position: relative;
  height: 5rem;
  width: auto;
  filter: drop-shadow(0 0 20px rgba(0, 255, 135, .3));
  animation: pulse-splash-logo 1.6s ease-in-out infinite;
}

#pre-react-splash .pulse-splash-dots {
  display: flex;
  gap: .5rem;
}

#pre-react-splash .pulse-splash-dot {
  width: .5rem;
  height: .5rem;
  border-radius: 9999px;
  background: #00ff87;
  animation: pulse-splash-dot 1s infinite;
}

#pre-react-splash .pulse-splash-dot:nth-child(2) {
  animation-delay: .1s;
}

#pre-react-splash .pulse-splash-dot:nth-child(3) {
  animation-delay: .2s;
}

@keyframes pulse-splash-ring {
  75%, 100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

@keyframes pulse-splash-logo {
  50% {
    opacity: .65;
  }
}

@keyframes pulse-splash-dot {
  0%, 100% {
    transform: translateY(-25%);
    animation-timing-function: cubic-bezier(.8, 0, 1, 1);
  }
  50% {
    transform: none;
    animation-timing-function: cubic-bezier(0, 0, .2, 1);
  }
}

@media (prefers-reduced-motion: reduce) {
  #pre-react-splash * {
    animation: none !important;
  }
}

@media (max-width: 767px) {
  #seo-crawl-summary nav {
    display: none;
  }

  #seo-crawl-summary main {
    padding-top: 4rem;
  }

  #seo-crawl-summary h1 {
    font-size: 3.25rem;
  }
}
