:root{
  --yellow:#fcda17;
  --black:#0b0b0b;
  --white:#ffffff;
  --stroke:rgba(255,255,255,.12);
  --shadow:0 18px 50px rgba(0,0,0,.35);
  --radius:20px;
}

*{ box-sizing:border-box; }

body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color:var(--white);
  background:
    radial-gradient(1000px 520px at 15% 10%, rgba(252,218,23,.25), transparent 55%),
    radial-gradient(900px 520px at 95% 25%, rgba(252,218,23,.15), transparent 55%),
    linear-gradient(180deg, #000000 0%, #060606 35%, #000000 100%);
}

a{ color:inherit; text-decoration:none; }

.wrap{
  max-width:1100px;
  margin:0 auto;
  padding:28px 20px 72px;
}

.topbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
}

.brand img{
  width:44px;
  height:44px;
  border-radius:12px;
  object-fit:cover;
  box-shadow:0 10px 25px rgba(0,0,0,.35);
}

.brand strong{ font-size:16px; }
.brand span{ font-size:12px; color:rgba(255,255,255,.7); }

.pill{
  padding:8px 14px;
  border-radius:999px;
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.05);
  font-size:12px;
}

.hero{
  margin-top:40px;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:24px;
}

@media(max-width:900px){
  .hero{ grid-template-columns:1fr; }
}

.card{
  background:rgba(255,255,255,.04);
  border:1px solid var(--stroke);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:28px;
}

h1{
  font-size:48px;
  line-height:1.05;
  margin:16px 0;
  letter-spacing:-.5px;
}

.sub{
  color:rgba(255,255,255,.8);
  line-height:1.6;
  max-width:55ch;
}

.btn{
  display:inline-block;
  padding:12px 18px;
  border-radius:14px;
  font-weight:600;
  margin-right:10px;
  margin-top:16px;
  border:1px solid rgba(255,255,255,.15);
  background:rgba(255,255,255,.06);
  color:white;
  transition:.15s ease;
}

.btn:hover{
  background:rgba(255,255,255,.12);
}

.btn.primary{
  background:var(--yellow);
  color:#111;
  border:none;
}

.btn.primary:hover{
  background:#ffe04d;
}

.feature{
  margin-top:14px;
  padding:16px;
  border-radius:16px;
  background:rgba(255,255,255,.03);
  border:1px solid var(--stroke);
}

.feature h3{
  margin:0 0 6px;
  font-size:15px;
}

.feature p{
  margin:0;
  font-size:14px;
  color:rgba(255,255,255,.75);
}

.beta{
  margin-top:30px;
  padding:24px;
  border-radius:var(--radius);
  border:1px solid rgba(252,218,23,.3);
  background:rgba(252,218,23,.08);
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  gap:20px;
  align-items:center;
}

input[type="email"]{
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.15);
  background:rgba(0,0,0,.3);
  color:white;
  min-width:240px;
}

/* Privacy */

.privacy{
  margin-top:30px;
  padding:28px;
  background:rgba(255,255,255,.04);
  border:1px solid var(--stroke);
  border-radius:var(--radius);
}

.privacy h2{
  margin:0 0 12px;
  font-size:20px;
  border-left:4px solid var(--yellow);
  padding-left:10px;
}

.privacy p{
  color:rgba(255,255,255,.78);
  font-size:14px;
  line-height:1.6;
}

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

@media(max-width:900px){
  .privacy-grid{ grid-template-columns:1fr; }
}

.privacy-item{
  padding:16px;
  border-radius:16px;
  background:rgba(255,255,255,.03);
  border:1px solid var(--stroke);
}

.privacy-item strong{
  display:block;
  margin-bottom:6px;
  font-size:14px;
}

.privacy-item span{
  font-size:13px;
  color:rgba(255,255,255,.75);
  line-height:1.5;
}

footer{
  margin-top:40px;
  display:flex;
  justify-content:space-between;
  font-size:12px;
  color:rgba(255,255,255,.6);
}

footer a{
  border-bottom:1px solid rgba(255,255,255,.2);
}
																	  
.beta-form{ display:flex; gap:10px; flex-wrap:wrap; align-items:center; justify-content:flex-end; }

.hp { position:absolute; left:-9999px; width:1px; height:1px; opacity:0; }

