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

:root {
  --bg: #071208;
  --bg-card: rgba(255, 255, 255, 0.04);
  --green: #22c55e;
  --green-light: #4ade80;
  --gold: #fbbf24;
  --text: #f0fdf4;
  --text-muted: #86efac;
  --border: rgba(34, 197, 94, 0.2);
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  min-height: 100dvh;
  font-family: "Outfit", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  position: relative;
}

.bg-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

.bg-glow--left {
  width: 500px;
  height: 500px;
  background: rgba(34, 197, 94, 0.12);
  top: -150px;
  left: -150px;
}

.bg-glow--right {
  width: 400px;
  height: 400px;
  background: rgba(251, 191, 36, 0.08);
  bottom: -100px;
  right: -100px;
}

.page {
  position: relative;
  z-index: 1;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1.5rem 3rem;
  max-width: 720px;
  margin: 0 auto;
}

.header {
  width: 100%;
  animation: fadeDown 0.8s ease both;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.logo__icon {
  font-size: 1.75rem;
  color: #ef4444;
  filter: drop-shadow(0 0 8px rgba(239, 68, 68, 0.45));
}

.logo__text {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 3rem 0;
  animation: fadeUp 0.9s ease 0.15s both;
}

.badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-light);
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid var(--border);
  margin-bottom: 1.75rem;
}

.hero__title {
  font-size: clamp(2rem, 6vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.hero__highlight {
  background: linear-gradient(135deg, var(--green-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 2.5rem;
  opacity: 0.85;
}

.features {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.1rem;
  border-radius: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  font-size: 0.95rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
  transition: border-color 0.2s, transform 0.2s;
}

.feature:hover {
  border-color: rgba(34, 197, 94, 0.45);
  transform: translateY(-2px);
}

.feature__icon {
  font-size: 1.1rem;
}

.footer {
  width: 100%;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(134, 239, 172, 0.45);
  animation: fadeUp 0.9s ease 0.3s both;
}

.footer__rights {
  margin-top: 0.35rem;
  font-size: 0.8rem;
  color: rgba(134, 239, 172, 0.35);
}

.cards-deco {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.card {
  position: absolute;
  font-size: 4rem;
  opacity: 0.06;
  user-select: none;
  animation: float 8s ease-in-out infinite;
}

.card--1 {
  top: 15%;
  right: 8%;
  animation-delay: 0s;
}

.card--2 {
  bottom: 20%;
  left: 6%;
  animation-delay: -3s;
  font-size: 3.5rem;
}

.card--3 {
  top: 55%;
  right: 15%;
  animation-delay: -5s;
  font-size: 3rem;
}

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

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

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(-5deg);
  }
  50% {
    transform: translateY(-18px) rotate(5deg);
  }
}

@media (max-width: 480px) {
  .page {
    padding: 1.5rem 1.25rem 2rem;
  }

  .hero {
    padding: 2rem 0;
  }

  .features {
    flex-direction: column;
    align-items: stretch;
  }

  .feature {
    justify-content: center;
  }

  .card {
    display: none;
  }
}
