:root {
  --green: #2ee876;
  --text: #b4ffd3;
}

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

body {
  font-family: 'DM Mono', monospace;
  color: var(--text);
  background: url("https://getimp.vip/assets/impulse_blurred.jpg") no-repeat center/cover fixed;
  cursor: none;
}

nav {
  display: flex;
  justify-content: space-between;
  padding: 20px 40px;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-left img {
  width: 26px;
}

.nav-links {
  display: flex;
  gap: 25px;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 13px;
}

.cta {
  background: var(--green);
  color: black;
  padding: 6px 14px;
}

.hero {
  text-align: center;
  padding: 140px 20px 100px;
}

.hero h1 {
  font-family: 'Syne';
  font-size: 90px;
}

.subtitle {
  opacity: 0.6;
  margin-top: 10px;
  margin-bottom: 28px;
}

.desc {
  margin-top: 20px;
  opacity: 0.7;
  line-height: 1.6;
}

.btn {
  padding: 12px 28px;
  border: 1px solid var(--green);
  cursor: none;
  display: inline-block;
}

.primary {
  background: var(--green);
  color: black;
}

.outline {
  background: transparent;
  color: var(--green);
}

section {
  padding: 80px 40px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
  margin-top: 40px;
}

.card {
  border: 1px solid rgba(46,232,118,0.2);
  padding: 20px;
}

.pricing {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.plan {
  flex: 1;
  border: 1px solid rgba(46,232,118,0.2);
  padding: 30px;
}

.featured {
  border-color: var(--green);
}

.price {
  font-size: 28px;
}

.active { color: var(--text); }
.disabled { opacity: 0.3; }

.item { margin-top: 20px; }

button {
  background: none;
  border: none;
  color: var(--green);
}

.download {
  text-align: center;
}

.cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
  animation: spin 4s linear infinite;
}

.cursor::before,
.cursor::after {
  content: "";
  position: absolute;
  background: var(--green);
}

.cursor::before {
  width: 2px;
  height: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.cursor::after {
  width: 20px;
  height: 2px;
  top: 50%;
  transform: translateY(-50%);
}

@keyframes spin {
  from { transform: translate(-50%, -50%) rotate(0); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.trail {
  position: fixed;
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.6;
}
