/* DARKS */
/* GREENS */
/* pallete one */
/* pallete two */
/* gradiants */
/* screen */
/* text */
.whatsapp {
  right: 16px;
  cursor: pointer;
  position: fixed;
  background-color: #00bb2d;
  fill: #fff;
  border-radius: 100%;
  height: 50px;
  width: 50px;
  bottom: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  z-index: 999;
}
.whatsapp a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
}
.whatsapp svg {
  width: 60%;
  height: 60%;
  fill: white;
}

#fake-bg {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle, #111, #000);
  z-index: -1;
}

:root {
  --accent: #00ff88;
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.25);
}

a {
  text-decoration: none;
}

/* RESET */
html, body {
  margin: 0;
  padding: 0;
  background: radial-gradient(circle at 50% 40%, #1f2a25 0%, #0a0a0a 60%, #000 100%);
  color: white;
  min-height: 100%;
  font-family: "Poppins", sans-serif;
}

::-moz-selection {
  background: var(--accent);
  color: black;
}

::selection {
  background: var(--accent);
  color: black;
}

#canvas-container {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.scroll-wrapper {
  position: relative;
  z-index: 2;
}

.section {
  height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 10%;
  transition: all 1.2s ease;
  opacity: 1;
}
@media (max-width: 768px) {
  .section {
    max-height: 350px;
  }
}

.glass-card {
  width: 100%;
  max-width: 90%;
  padding: 48px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all 0.3s ease;
}

.glass-card:hover {
  box-shadow: 0 0 30px rgba(0, 255, 136, 0.15), 0 20px 60px rgba(0, 0, 0, 0.6);
}

h1, h2 {
  font-size: 48px;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 30px;
}

.badge {
  display: inline-block;
  background: var(--accent);
  color: black;
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.8rem;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.cta-button {
  font-size: 14px;
  display: inline-block;
  width: auto;
  background: #cbfc01;
  color: black;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: bold;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 255, 136, 0.25);
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-4px) scale(1.02);
}

@media (max-width: 768px) {
  .cta-button {
    font-size: 12px;
  }
  .section {
    padding: 100px 12px;
  }
  .glass-card {
    max-width: 100%;
    padding: 32px 20px;
    border-radius: 18px;
  }
  h1, h2 {
    font-size: 30px;
    line-height: 1.1;
    letter-spacing: -1px;
  }
  p {
    font-size: 14px;
    line-height: 1.8;
  }
  .badge {
    font-size: 0.75rem;
  }
}
