:root{
  --bg:#0f1724;
  --card:#0b1220;
  --accent:#7dd3fc;
  --muted:#9aa4b2;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:Inter,system-ui,Segoe UI,Roboto,Arial,sans-serif;
  background:linear-gradient(180deg,var(--bg),#071020);
  color:#e6eef6;
  -webkit-font-smoothing:antialiased;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:24px;
}
.wrap{width:100%;max-width:720px}
.card{
  background:linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border:1px solid rgba(255,255,255,0.04);
  padding:40px;
  border-radius:12px;
  box-shadow:0 10px 30px rgba(2,6,23,0.6);
  text-align:center;
}
.domain{font-size:40px;margin:0 0 6px;color:var(--accent)}
.tag{margin:0 0 18px;color:var(--muted);font-weight:600}
.desc{margin:0 0 24px;color:#cfe8f7}
.contact{margin:0 0 12px}
.controls{margin:10px 0}
.field{margin:10px 0;text-align:left}
.field label{display:block;color:var(--muted);font-size:13px;margin-bottom:6px}
.field input,.field textarea{width:100%;padding:10px;border-radius:8px;border:1px solid rgba(255,255,255,0.04);background:rgba(255,255,255,0.02);color:inherit}
.small{margin-top:16px;color:var(--muted);font-size:13px}
.btn{
  display:inline-block;
  padding:10px 18px;
  background:transparent;
  color:var(--accent);
  border:1px solid rgba(125,211,252,0.18);
  border-radius:8px;
  text-decoration:none;
  font-weight:600;
}
.btn:hover{background:rgba(125,211,252,0.04)}

@media (max-width:420px){
  .domain{font-size:28px}
  .card{padding:28px}
}
