:root{
  --bg:#1f1726;
  --panel:#2b2233;
  --muted:#9b8fa3;
  --accent:#e06ab9;
  --card:#30243a;
  --glass: rgba(255,255,255,0.03);
  --radius:14px;
  --maxw:980px;
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  background: linear-gradient(180deg,#22162a 0%, #1a1420 100%);
  color:#efecf2;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

.site-header{
  padding:36px 16px;
  border-bottom:1px solid rgba(255,255,255,0.02);
  background:transparent;
}
.header-inner{
  max-width:var(--maxw);
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:20px;
}
.logo{height:50px; display:block}
.site-title{
  margin:0;
  font-size:28px;
  font-weight:700;
  letter-spacing:-0.5px;
  color:#efecf2;
}

.container{
  max-width:var(--maxw);
  margin:40px auto;
  padding:0 18px;
}

.section{
  background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
  padding:40px;
  border-radius:var(--radius);
  box-shadow: 0 8px 30px rgba(0,0,0,0.45);
  border:1px solid rgba(255,255,255,0.02);
  margin-bottom:24px;
}

.hero{
  display:grid;
  grid-template-columns: 1fr;
  gap:28px;
}
.left{max-width:640px}
h1{
  margin:0 0 12px 0;
  font-size:32px;
  letter-spacing:-0.4px;
}
h2{
  margin:0 0 16px 0;
  font-size:24px;
  letter-spacing:-0.3px;
  color:#f6eef9;
}
.lead{
  margin:0 0 8px 0;
  color:var(--muted);
  line-height:1.6;
  max-width:760px;
}
.note{
  margin:0 0 12px 0;
  color:var(--muted);
  text-align:left;
}

.domains{
  margin:8px 0 0 0;
  background:linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0.02));
  border-radius:12px;
  padding:8px;
  display:grid;
  gap:8px;
}
.domain{
  display:flex;
  align-items:center;
  gap:12px;
  padding:14px 16px;
  background:var(--card);
  border-radius:10px;
  color:#f6eef9;
  text-decoration:none;
  font-weight:600;
  transition:transform .12s ease, background .12s ease;
}
.domain:hover{ transform:translateY(-3px); background:rgba(255,255,255,0.03) }
.icon{opacity:0.9}

.overview{
  line-height:1.8;
}
.overview p{
  margin:0 0 14px 0;
  color:var(--muted);
}
.overview p:first-child{
  color:#efecf2;
  font-weight:500;
}

.socials{
  display:grid;
  gap:12px;
  margin-top:16px;
}
.social-link{
  display:flex;
  align-items:center;
  gap:14px;
  padding:16px 18px;
  background:var(--card);
  border-radius:10px;
  text-decoration:none;
  color:#f6eef9;
  font-weight:600;
  transition:transform .12s ease, background .12s ease;
}
.social-link:hover{
  transform:translateY(-3px);
  background:rgba(255,255,255,0.03);
}
.social-icon{
  font-size:20px;
}

.foot{
  margin-top:18px;
  color:var(--muted);
  font-size:14px;
}

.site-footer{
  margin-top:40px;
  padding:26px 16px;
  text-align:center;
  color:var(--muted);
}
.footer-inner{max-width:var(--maxw); margin:0 auto}
@media (min-width:1000px){
  .hero{grid-template-columns: 1fr 420px; align-items:start}
}