:root {
  color-scheme: dark;
  font-family:
    Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: #d9f8ff;
  background: #000;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

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

body {
  display: flex;
  flex-direction: column;
  min-width: 320px;
  min-height: 100vh;
  min-height: 100svh;
  background: #000;
}

.hero {
  position: relative;
  display: grid;
  flex: 1;
  place-items: center;
  padding: 2rem 1.25rem;
  overflow: hidden;
}

.brand-lockup {
  width: min(76rem, 92vw);
  min-width: 0;
  max-width: 100%;
  text-align: center;
  transform: translateY(-1.5vh);
}

h1 {
  position: relative;
  margin: 0;
  line-height: 0;
}

.logo-stage {
  position: relative;
  display: block;
  isolation: isolate;
}

.cat-canvas {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 170%;
  pointer-events: none;
  opacity: 0;
  outline: none;
  transition: opacity 480ms ease;
}

.cat-canvas.is-ready {
  opacity: 1;
}

.brand-logo {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 1.25rem 1.75rem rgb(14 111 164 / 12%));
}

.tagline {
  margin: clamp(0.95rem, 2.2vh, 1.4rem) auto 0;
  color: #fff;
  font-size: 1.9rem;
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 1;
  text-shadow: none;
  -webkit-text-fill-color: #fff;
  -webkit-text-stroke: 0;
}

.brand-stamp {
  position: absolute;
  top: clamp(1.25rem, 3.5vw, 3rem);
  right: clamp(6rem, 14vw, 14rem);
  width: clamp(7rem, 12vw, 10rem);
  height: auto;
  border: 1px solid rgb(63 224 219 / 45%);
  border-radius: 50%;
  box-shadow:
    0 0 0 0.35rem rgb(0 0 0 / 72%),
    0 0 0 0.42rem rgb(63 224 219 / 18%),
    0 1rem 2.5rem rgb(0 139 255 / 20%);
  opacity: 0.9;
  transform: rotate(-7deg);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 4.5rem;
  padding: 1.25rem;
  border-top: 1px solid rgb(44 211 221 / 22%);
  color: #8edce6;
  background: #000;
  box-shadow: 0 -0.5rem 2rem rgb(0 205 217 / 8%);
  font-size: 0.875rem;
  line-height: 1.4;
}

.company-name {
  color: #8ee8dc;
  font-weight: 700;
}

.footer-separator {
  display: inline-block;
  flex: 0 0 auto;
  width: 0.25rem;
  height: 0.25rem;
  margin: 0 0.8rem;
  border-radius: 50%;
  background: #16b6a7;
}

.site-footer a {
  color: #76c9ff;
  font-weight: 600;
  text-decoration-color: rgb(23 109 159 / 32%);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
  transition:
    color 160ms ease,
    text-decoration-color 160ms ease;
}

.site-footer a:hover {
  color: #b4e4ff;
  text-decoration-color: currentColor;
}

.site-footer a:focus-visible {
  border-radius: 0.2rem;
  outline: 3px solid rgb(0 158 191 / 24%);
  outline-offset: 0.25rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 600px) {
  .hero {
    padding-bottom: 7.5rem;
  }

  .brand-lockup {
    width: 100%;
  }

  .cat-canvas {
    height: 190%;
  }

  .tagline {
    font-size: 1.25rem;
  }

  .brand-stamp {
    top: 1rem;
    right: 3.5rem;
    width: 6.25rem;
  }

}

@media (prefers-reduced-motion: reduce) {
  .cat-canvas {
    transition: none;
  }
}

@media (max-width: 520px) {
  .tagline {
    font-size: 0.85rem;
  }
}

@media (max-width: 360px) {
  .tagline {
    font-size: 0.75rem;
  }
}
