* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: #ffffff;
  color: #0f172a;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* subtle cursor light */
.cursor-light {
  position: fixed;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(22,163,74,0.08), transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.container {
  text-align: center;
  max-width: 700px;
  padding: 40px;
  position: relative;
  z-index: 2;
}

.logo {
  font-size: 0.85rem;
  letter-spacing: 2px;
  font-weight: 600;
  color: #16a34a;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 0.2s;
}

.underline {
  width: 50px;
  height: 3px;
  background: #16a34a;
  margin: 20px auto 30px;
  border-radius: 10px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 0.4s;
}

p {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 0.6s;
}

.footer {
  margin-top: 40px;
  font-size: 0.8rem;
  color: #94a3b8;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 0.8s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
