:root {
  --bg: #11181e;
  --bg-2: #151e25;
  --card: rgba(18, 26, 33, 0.78);
  --green: #59c982;
  --green-dark: #35a765;
  --white: #ffffff;
  --muted: #a7b3bd;
  --border: rgba(255, 255, 255, 0.08);
  --shadow: rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
}

.page {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
  isolation: isolate;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.03), transparent 35%),
    radial-gradient(circle at 50% 0%, rgba(89, 201, 130, 0.12), transparent 38%),
    linear-gradient(180deg, #121a20 0%, #0d1318 100%);
}

.page::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at center, black, transparent 72%);
  z-index: -3;
}

.background-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(80px);
  opacity: 0.55;
  z-index: -2;
}

.glow-one {
  width: 360px;
  height: 360px;
  background: rgba(89, 201, 130, 0.22);
  top: 10%;
  right: 12%;
}

.glow-two {
  width: 280px;
  height: 280px;
  background: rgba(89, 201, 130, 0.12);
  bottom: 12%;
  left: 10%;
}

.hero {
  width: min(100%, 980px);
  padding: 72px 48px 52px;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.015)),
    var(--card);
  box-shadow:
    0 34px 110px var(--shadow),
    inset 0 1px 0 rgba(255,255,255,0.08);
  backdrop-filter: blur(18px);
}

.topline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 42px;
  padding: 10px 16px;
  border: 1px solid rgba(89, 201, 130, 0.28);
  border-radius: 999px;
  color: var(--green);
  background: rgba(89, 201, 130, 0.08);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pulse {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(89, 201, 130, 0.7);
  animation: pulse 1.8s infinite;
}

.logo {
  width: min(540px, 92%);
  display: block;
  margin: 0 auto 48px;
  filter: drop-shadow(0 22px 38px rgba(0, 0, 0, 0.28));
}

h1 {
  max-width: 850px;
  margin: 0 auto;
  font-size: clamp(44px, 7vw, 86px);
  line-height: 0.94;
  letter-spacing: -0.075em;
  font-weight: 900;
}

.subtitle {
  max-width: 680px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.65;
  font-weight: 400;
}

.actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 42px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
}

.primary {
  color: #07110b;
  background: linear-gradient(135deg, var(--green), #7ee6a5);
  box-shadow: 0 16px 38px rgba(89, 201, 130, 0.22);
}

.secondary {
  color: var(--white);
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.045);
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 54px;
}

.features div {
  padding: 22px 18px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(255,255,255,0.035);
}

.features strong {
  display: block;
  margin-bottom: 7px;
  font-size: 18px;
  font-weight: 900;
}

.features span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(89, 201, 130, 0.65);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(89, 201, 130, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(89, 201, 130, 0);
  }
}

@media (max-width: 760px) {
  .page {
    padding: 20px;
  }

  .hero {
    padding: 48px 22px 28px;
    border-radius: 26px;
  }

  .logo {
    margin-bottom: 34px;
  }

  .features {
    grid-template-columns: 1fr;
    margin-top: 38px;
  }

  .topline {
    font-size: 11px;
  }
}