/* Clean, modern, cPanel-friendly static site (no build tools) */
:root{
  --bg:#0b0d12;
  --card:#101522cc;
  --stroke:#26324a;
  --text:#eaf0ff;
  --muted:#b7c2dd;
  --shadow: 0 20px 60px rgba(0,0,0,.45);
  --radius: 22px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background:var(--bg);
  overflow-x:hidden;
}
a{color:inherit}
.bg{
  position:fixed; inset:-20vh -20vw;
  background:
    radial-gradient(60vw 50vh at 15% 10%, rgba(120,120,255,.32), transparent 55%),
    radial-gradient(55vw 45vh at 85% 25%, rgba(0,220,255,.22), transparent 55%),
    radial-gradient(55vw 55vh at 40% 90%, rgba(255,140,0,.14), transparent 60%),
    radial-gradient(60vw 60vh at 90% 92%, rgba(110,255,190,.10), transparent 55%);
  filter: blur(8px);
  opacity:.9;
  pointer-events:none;
  z-index:-1;
}
.wrap{max-width:1100px; margin:0 auto; padding:24px}
.header{
  display:flex; align-items:center; justify-content:space-between;
  gap:16px;
}
.brand{display:flex; align-items:center; gap:12px}
.logo{
  width:44px; height:44px; border-radius:14px;
  display:grid; place-items:center;
  background: linear-gradient(135deg, rgba(255,255,255,.10), rgba(255,255,255,.04));
  border:1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
  font-weight:800;
}
.brandname{font-weight:700; letter-spacing:.2px}
.brandtag{font-size:13px; color:var(--muted)}
.pill{
  display:inline-flex; align-items:center; gap:8px;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(16,21,34,.55);
  text-decoration:none;
  font-size:13px;
}
.hero{
  margin-top:10px;
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:22px;
  align-items:stretch;
}
@media (max-width: 920px){
  .hero{grid-template-columns: 1fr; }
}
h1{
  margin:0 0 10px 0;
  font-size:44px;
  line-height:1.05;
  letter-spacing:-.8px;
}
@media (max-width: 520px){
  h1{font-size:34px}
}
.grad{
  background: linear-gradient(90deg, rgba(120,120,255,1), rgba(0,220,255,1), rgba(110,255,190,1));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.lead{margin:0 0 18px 0; color:var(--muted); font-size:16px; line-height:1.55}
.cta-row{display:flex; gap:10px; flex-wrap:wrap}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(16,21,34,.40);
  text-decoration:none;
  font-weight:650;
}
.btn.primary{
  background: linear-gradient(135deg, rgba(120,120,255,.80), rgba(0,220,255,.55));
  border-color: rgba(255,255,255,.16);
}
.btn.ghost:hover, .pill:hover{background: rgba(16,21,34,.62)}
.btn.primary:hover{filter:brightness(1.05)}
.btn.small{padding:10px 12px; border-radius:12px; font-weight:650}

.mini{margin-top:18px; display:grid; grid-template-columns:1fr 1fr; gap:10px}
@media (max-width: 520px){ .mini{grid-template-columns:1fr} }
.mini-card{
  border-radius:18px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(16,21,34,.42);
  padding:14px 14px;
}
.mini-k{font-size:12px; color:var(--muted); margin-bottom:6px}
.mini-v{font-weight:650}

.card{
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.14);
  background: var(--card);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.card-top{
  padding:16px 18px;
  display:flex; align-items:center; justify-content:space-between; gap:10px;
  border-bottom:1px solid rgba(255,255,255,.10);
}
.badge{
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  background: rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  color:var(--muted);
}
.domain{
  font-weight:800;
  letter-spacing:.2px;
  font-size:16px;
  text-align:right;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
  max-width:62%;
}
.card-body{padding:16px 18px; display:grid; gap:12px}
.stat{padding:12px 12px; border-radius:16px; border:1px solid rgba(255,255,255,.10); background: rgba(0,0,0,.12)}
.stat-n{font-weight:750; margin-bottom:4px}
.stat-d{color:var(--muted); font-size:13px; line-height:1.45}
.card-actions{padding:16px 18px; display:flex; gap:10px; border-top:1px solid rgba(255,255,255,.10); flex-wrap:wrap}

.note{
  margin-top:12px;
  display:flex; align-items:flex-start; gap:10px;
  color:var(--muted);
  font-size:13px;
}
.dot{width:10px; height:10px; border-radius:999px; background: rgba(0,220,255,.75); margin-top:4px; box-shadow: 0 0 18px rgba(0,220,255,.55)}
.section{margin-top:34px}
.section-head h2{margin:0; font-size:22px; letter-spacing:-.3px}
.section-head p{margin:8px 0 0 0; color:var(--muted); line-height:1.55}

.grid{
  margin-top:14px;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:10px;
}
@media (max-width: 920px){ .grid{grid-template-columns: repeat(3, 1fr)} }
@media (max-width: 680px){ .grid{grid-template-columns: repeat(2, 1fr)} }
@media (max-width: 420px){ .grid{grid-template-columns: 1fr} }

.dom-card{
  border-radius:18px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(16,21,34,.42);
  padding:14px 14px;
  text-decoration:none;
  display:flex; justify-content:space-between; align-items:center; gap:10px;
}
.dom-card:hover{background: rgba(16,21,34,.62)}
.dom-name{font-weight:800; letter-spacing:.2px; font-size:14px}
.dom-tag{font-size:12px; color:var(--muted)}
.dom-cta{font-size:12px; padding:6px 10px; border-radius:999px; border:1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.06); color:var(--muted)}

.ideas{
  margin-top:14px;
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:10px;
}
@media (max-width: 760px){ .ideas{grid-template-columns: 1fr} }
.idea{
  border-radius:18px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(16,21,34,.42);
  padding:16px 16px;
}
.idea-h{font-weight:800; margin-bottom:6px}
.idea-p{color:var(--muted); line-height:1.55; margin:0}

.footer{
  margin-top:40px;
  border-top:1px solid rgba(255,255,255,.10);
  padding:22px 0 10px 0;
  display:flex; justify-content:space-between; gap:18px; flex-wrap:wrap;
}
.foot-title{font-weight:900}
.foot-sub{color:var(--muted); margin-top:6px}
.contact{display:grid; gap:8px}
.c-row{display:flex; gap:10px; align-items:center; justify-content:flex-end}
.c-k{min-width:64px; color:var(--muted); font-size:12px; text-transform:uppercase; letter-spacing:.12em}
