@font-face {
  font-family: 'Nexa Bold';
  src: url('NexaBold.woff') format('woff');
  font-weight: 700;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #000;
  color: #fff;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}


main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem 4rem;
  text-align: center;
}

header {
  position: absolute;
  top: 0;
  left: 0;
  padding: 2rem 2.5rem;
}

.logo {
  font-family: 'Nexa Bold', 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  text-decoration: none;
}

.logo:hover {
  color: #fff;
}

h1 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 2.5rem;
  color: #fff;
  animation: fadeIn 1.2s ease-out both;
}

h1 a {
  color: inherit;
  text-decoration: none;
}

h1 a:hover {
  color: inherit;
}

.contact {
  font-size: 1rem;
  font-weight: 400;
  color: #ccc;
  margin-bottom: 0.6rem;
}

.contact a {
  color: #ccc;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.careers {
  font-size: 0.9rem;
  font-weight: 400;
  color: #888;
}

.careers a {
  color: #888;
  text-decoration: underline;
  text-underline-offset: 3px;
}

a {
  transition: color 0.2s;
}

a:hover {
  color: #fff;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact {
  animation: fadeIn 1.2s ease-out 0.3s both;
}

.careers {
  animation: fadeIn 1.2s ease-out 0.5s both;
}

footer {
  padding: 0 3rem 2rem;
  text-align: left;
  flex-shrink: 0;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.3rem;
}

.backed {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.backed-label {
  font-size: 0.6rem;
  color: #333;
  letter-spacing: 0.04em;
  margin-right: 0.2rem;
}

.backed img {
  height: 16px;
  opacity: 0.25;
  filter: grayscale(100%) brightness(2);
}

.legal {
  font-size: 0.72rem;
  color: #444;
  line-height: 1.6;
}

@media (max-width: 480px) {
  header {
    padding: 1.2rem 1.2rem;
  }

  .logo {
    font-size: 0.95rem;
  }

  main {
    padding: 5rem 1.5rem 3rem;
  }

  h1 {
    font-size: 1.4rem;
    margin-bottom: 1.8rem;
  }

  .contact {
    font-size: 0.8rem;
  }

  .careers {
    font-size: 0.75rem;
  }

  footer {
    padding: 0 1.2rem 1.2rem;
  }

  footer {
    padding: 0 1.2rem 1.5rem;
    text-align: center;
  }

  .footer-top {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .backed {
    gap: 1rem;
    justify-content: center;
  }

  .backed img {
    height: 13px;
  }

  .backed-label {
    font-size: 0.5rem;
  }

  .legal {
    font-size: 0.6rem;
  }
}
