:root{
  --bg:#050505;
  --text:#f0ede6;
  --muted:#777;
  --accent:#8b5cf6;
}

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

body.lp-body{
  font-family:'Inter',sans-serif;
  background:var(--bg);
  color:var(--text);
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow-x:hidden;
}

#webgl{
  position:fixed;
  inset:0;
  z-index:0;
}

.lp-container{
  position:relative;
  z-index:1;
  width:100%;
  max-width:750px;
  padding:40px 20px;
  text-align:center;
}

.lp-title{
  font-family:'Space Grotesk',sans-serif;
  font-size:42px;
  margin-bottom:50px;
}

.lp-tabs{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:20px;
  margin-bottom:50px;
  border-bottom:1px solid rgba(255,255,255,.08);
  padding-bottom:15px;
}

.lp-tab{
  background:none;
  border:none;
  color:var(--muted);
  font-family:'Space Grotesk',sans-serif;
  font-size:15px;
  cursor:pointer;
  position:relative;
  padding:8px 4px;
  transition:.25s;
}

.lp-tab:hover{
  color:var(--text);
}

.lp-tab::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-4px;
  height:2px;
  background:var(--accent);
  opacity:0;
  transform:scaleX(.5);
  transition:.25s;
}

.lp-tab.active{
  color:var(--text);
}

.lp-tab.active::after{
  opacity:1;
  transform:scaleX(1);
  box-shadow:0 0 12px rgba(139,92,246,.4);
}

.lp-form{
  display:flex;
  flex-direction:column;
  gap:25px;
}

.lp-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}

.lp-form input,
.lp-form textarea{
  background:transparent;
  border:none;
  border-bottom:1px solid rgba(255,255,255,.15);
  padding:12px 0;
  color:var(--text);
  font-size:15px;
  outline:none;
  transition:.3s;
}

.lp-form input:focus,
.lp-form textarea:focus{
  border-color:var(--accent);
}

.lp-form textarea{
  resize:none;
}

.lp-captcha{
  display:flex;
  justify-content:center;
  margin-top:10px;
}

.lp-btn{
  margin-top:10px;
  padding:14px;
  border:none;
  border-radius:40px;
  background:var(--accent);
  color:white;
  font-family:'Space Grotesk',sans-serif;
  font-size:15px;
  cursor:pointer;
  transition:.3s;
}

.lp-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 8px 20px rgba(139,92,246,.35);
}

@media(max-width:600px){
  .lp-grid{
    grid-template-columns:1fr;
  }
  .lp-title{
    font-size:30px;
  }
}


#webgl{
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;  
}


.lp-back{
  position:absolute;
  top:18px;
  right:18px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border-radius:999px;
  text-decoration:none;
  font-family:'Space Grotesk',sans-serif;
  font-size:14px;
  color:var(--text);
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  transition:.25s;
}

.lp-back:hover{
  background:rgba(255,255,255,.10);
  transform:translateY(-1px);
}


.form-consent {
  text-align: center;
  font-size: 13px;
  color: #777;
  margin-top: 18px;
}

.consent-link {
  color: #8b5cf6;
  text-decoration: none;
  border-bottom: 1px solid rgba(139,92,246,0.4);
  transition: 0.3s ease;
}

.consent-link:hover {
  color: #a78bfa;
  border-bottom-color: #a78bfa;
}
