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

:root {
  --orange: #f8981d;
  --green: #82d916;
  --green-dark: #6bb812;
  --ink: #1a1a1a;
  --muted: #5c5c5c;
  --bg: #fafafa;
  --pixel: rgba(130, 217, 22, 0.08);
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

.bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(248, 152, 29, 0.12), transparent 70%),
    radial-gradient(ellipse 60% 50% at 80% 100%, rgba(130, 217, 22, 0.1), transparent 60%),
    var(--bg);
}

.bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--pixel) 1px, transparent 1px),
    linear-gradient(90deg, var(--pixel) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 40%, #000 20%, transparent 75%);
}

.page {
  position: relative;
  z-index: 1;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px 32px;
  text-align: center;
}

.logo {
  width: min(420px, 88vw);
  height: auto;
  margin-bottom: 40px;
  filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.06));
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: #fff;
  border: 2px solid rgba(130, 217, 22, 0.35);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--green-dark);
}

.badge__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

h1 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 16px;
  color: var(--ink);
}

.lead {
  max-width: 440px;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 36px;
}

.features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 48px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: #fff;
  border-radius: 12px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ink);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.feature__icon {
  font-size: 1.125rem;
  line-height: 1;
}

.footer {
  margin-top: auto;
  padding-top: 32px;
  font-size: 0.8125rem;
  color: #999;
}

.footer a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer a:hover {
  color: var(--green-dark);
}

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

.pixel {
  position: absolute;
  width: 8px;
  height: 8px;
  opacity: 0.35;
  animation: drift 12s linear infinite;
}

.pixel--orange { background: var(--orange); }
.pixel--green { background: var(--green); }

@keyframes drift {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 0.35; }
  90% { opacity: 0.35; }
  100% { transform: translateY(-20px) rotate(180deg); opacity: 0; }
}

@media (max-width: 480px) {
  .logo {
    margin-bottom: 28px;
  }

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

  .feature {
    justify-content: center;
  }
}
