
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&display=swap');
:root{
  --grad-start:#ff1fa7;
  --grad-end:#006dff;
}
*{box-sizing:border-box;margin:0;padding:0;font-family:'Inter',sans-serif;color:#fff}
body{background:#000;display:flex;flex-direction:column;align-items:center;justify-content:center;min-height:100vh;padding:2rem;text-align:center}
h1{font-size:2.5rem;font-weight:800;background:linear-gradient(90deg,var(--grad-start),var(--grad-end));-webkit-background-clip:text;color:transparent;margin-bottom:1rem}
h2{font-size:1.25rem;font-weight:400;margin-bottom:2rem;color:#aaa}
img{max-width:90%;height:auto;margin:1.5rem 0;border-radius:12px}
button, input[type="email"]{padding:0.9rem 1.4rem;border:none;border-radius:999px;font-size:1rem}
input[type="email"]{background:rgba(255,255,255,0.1);margin-right:0.5rem;width:250px}
button{cursor:pointer;background:linear-gradient(90deg,var(--grad-start),var(--grad-end));color:#fff;font-weight:600}
button:hover{opacity:0.9}
.container{max-width:700px}
ul{list-style:none;margin-top:1.5rem;text-align:left}
li{margin:0.4rem 0;padding-left:1.2rem;position:relative}
li::before{content:"•";position:absolute;left:0;color:var(--grad-start)}
.logo{max-width:200px;margin-bottom:2rem}
@media(max-width:600px){
  h1{font-size:2rem}
  h2{font-size:1rem}
}
