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

:root {
  --gold: #d6a031;
  --gold-light: #ffe177;
  --green: #36c96c;
  --green-deep: #145b35;
  --night: #02080d;
  --text: #ffffff;
  --muted: #aeb8c6;
}

html,
body {
  width: 100%;
  min-height: 100%;
  font-family: "Poppins", Arial, sans-serif;
  color: var(--text);
  overflow: hidden;
  background: var(--night);
}

.landing {
  position: relative;
  width: 100vw;
  height: 100vh;
  min-height: 760px;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
  background: #02080d;
}

.bg-layer {
  position: absolute;
  inset: 0;
  z-index: -4;
  background:
    linear-gradient(180deg, rgba(3, 11, 18, 0.2), rgba(2, 7, 12, 0.92)),
    radial-gradient(circle at 50% 45%, rgba(32, 110, 67, 0.18), transparent 34%),
    radial-gradient(circle at 50% 22%, rgba(32, 74, 118, 0.14), transparent 28%),
    url("assets/background.jpg");
  background-size: cover;
  background-position: center;
  filter: saturate(1.05) brightness(0.82);
  transform: scale(1.03);
}

.shade-layer {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at center, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.28) 44%, rgba(0, 0, 0, 0.88) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.86), transparent 34%, transparent 66%, rgba(0, 0, 0, 0.86));
}

#particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  pointer-events: none;
}

.hero {
  width: min(92%, 760px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeUp 0.9s ease both;
  margin-top: -28px;
}

.logo-wrap {
  min-height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.logo {
  width: min(405px, 78vw);
  height: auto;
  filter:
    drop-shadow(0 12px 18px rgba(0, 0, 0, 0.78))
    drop-shadow(0 0 22px rgba(158, 224, 15, 0.18));
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 21px;
  border: 1px solid rgba(70, 200, 120, 0.92);
  border-radius: 999px;
  background: rgba(8, 24, 18, 0.78);
  color: #9ff0c0;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.075em;
  box-shadow: 0 0 24px rgba(70, 200, 120, 0.14);
  backdrop-filter: blur(10px);
}

.status-pill span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #46c878;
  box-shadow: 0 0 12px rgba(70, 200, 120, 0.9);
}

h1 {
  margin-top: 28px;
  max-width: 760px;
  font-size: clamp(2.8rem, 5.4vw, 4.65rem);
  line-height: 1.03;
  font-weight: 900;
  letter-spacing: -0.065em;
  text-shadow: 0 12px 30px rgba(0, 0, 0, 0.55);
}

.subtitle {
  width: min(100%, 640px);
  margin-top: 24px;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.13rem);
  line-height: 1.72;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.9);
}

.actions {
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 214px;
  padding: 15px 34px;
  border-radius: 999px;
  text-decoration: none;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: 0.25s ease;
}

.btn.primary {
  border: 1px solid rgba(82, 230, 130, 0.5);
  background: linear-gradient(135deg, rgba(35, 139, 79, 0.98), rgba(16, 84, 49, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 17px 36px rgba(0, 0, 0, 0.34),
    0 0 28px rgba(54, 201, 108, 0.22);
}

.btn.primary:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 225, 119, 0.85);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 20px 44px rgba(0, 0, 0, 0.42),
    0 0 36px rgba(214, 160, 49, 0.28);
}

.follow {
  margin-top: 36px;
}

.follow p {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.23em;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 17px;
}

.social {
  width: 51px;
  height: 51px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 900;
  font-size: 1.18rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.24);
  transition: 0.25s ease;
}

.social:hover {
  color: var(--gold-light);
  border-color: rgba(214, 160, 49, 0.7);
  transform: translateY(-3px);
}

.hero {
  width: min(92%, 760px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeUp 0.9s ease both;
  margin-top: -28px;
}

.follow {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

footer {
  position: static;
  margin-top: 18px;
  text-align: center;
  color: rgba(255, 255, 255, 0.32);
  font-size: 0.9rem;
  font-weight: 700;
}

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

@media (max-width: 768px) {
  body {
    overflow: auto;
  }

  .landing {
    min-height: 100svh;
    height: auto;
    padding: 46px 0 92px;
  }

  .hero {
    margin-top: 0;
  }

  .logo-wrap {
    min-height: 150px;
  }

  .logo {
    width: min(330px, 82vw);
  }

  .desktop-break {
    display: none;
  }

  .btn {
    min-width: 190px;
  }

  footer {
    bottom: 24px;
  }
}
