* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: #1a1a1c;
  color: #f5f5f0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  text-align: center;
  max-width: 640px;
  padding: 4rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.logo {
  height: 18rem;
  max-width: 100%;
  margin: 0 auto;
}

.description {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #d4d4d0;
}

.cta {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.link {
  position: relative;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #d4d4d0;
  text-decoration: none;
  padding-bottom: 4px;
}

.link:hover {
  color: #f5f5f0;
}

.underline {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 100%;
  background-color: #c87b6a;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.link:hover .underline {
  transform: scaleX(1);
}

.note {
  font-size: 0.875rem;
  color: #8a8a86;
}

/* Fade-in animation */
.fade-in {
  animation: fadeIn 4s ease-out forwards;
  opacity: 0;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
