/* [project]/src/marketing-site/app/not-found.css [app-client] (css) */
@font-face {
  font-family: Manrope;
  src: url("/fonts/manrope-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

.site-shell.not-found-page {
  color: #111827;
  --lightningcss-light: initial;
  --lightningcss-dark: ;
  color-scheme: light;
  background: #fff;
  font-family: Manrope, system-ui, sans-serif;
}

.not-found-page * {
  box-sizing: border-box;
}

.not-found-main {
  justify-content: center;
  align-items: center;
  min-height: 90vh;
  padding: 24px;
  display: flex;
}

.not-found-columns {
  justify-content: center;
  align-items: center;
  gap: 12px;
  display: flex;
}

.not-found-copy {
  text-align: left;
  flex-direction: column;
  align-self: stretch;
  align-items: flex-start;
  display: flex;
  transform: translateY(-40px);
}

.not-found-code {
  color: #d1d5db;
  letter-spacing: -.07em;
  margin: 0;
  font-size: 6rem;
  font-weight: 700;
  line-height: .82;
}

.not-found-character {
  flex: 0 0 250px;
  width: 250px;
  max-width: 250px;
  height: auto;
  display: block;
  transform: translateY(28px);
}

.not-found-copy h1 {
  letter-spacing: -.04em;
  margin: 8px 0 0;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.05;
}

.not-found-copy p:not(.not-found-code) {
  color: #4b5563;
  margin: 16px 0 28px;
  font-size: 1.08rem;
}

.not-found-home {
  color: #fff;
  background: #000;
  border-radius: 9999px;
  padding: 16px 32px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity .2s;
  display: inline-block;
}

.not-found-home:hover, .not-found-home:focus-visible {
  opacity: .9;
}

@media (max-width: 640px) {
  .not-found-columns {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .not-found-copy {
    transform: none;
  }

  .not-found-character {
    flex-basis: auto;
    align-self: flex-end;
    width: min(250px, 42vw);
    transform: translateX(2rem);
  }
}

/*# sourceMappingURL=src_marketing-site_app_not-found_1od-6yc.css.map*/