:root {
  --bg: #ffffff;
  --green: #0f9d68;
  --teal: #0d9488;
  --text: #0b1f19;
}

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

html, body {
  height: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
}

#tsparticles {
  position: fixed;
  inset: 0;
  z-index: 0;
}

.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  gap: 18px;
}

.badge {
  padding: 6px 16px;
  border: 1px solid var(--teal);
  border-radius: 999px;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  animation: fade-slide-up 0.8s ease-out 0.15s both;
  margin-top: 20px;
}

.logo {
  will-change: background-position;
  animation: fade-slide-up 0.8s ease-out both;
  max-width: 40%;
}

@keyframes fade-slide-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


@media (prefers-reduced-motion: reduce) {
  .logo,
  .badge {
    animation: none;
  }
}

@media (max-width:1000px) {
  .logo {
    max-width: 80%;
  }
}
