
:root{
  --bg:#0b0b0b;
  --panel:#111;
  --muted:#7b7b7b;
  --accent:#00f0d1;
  --btn:#00f0d1;
  --text:#eaeaea;
}
*{box-sizing:border-box}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background:var(--bg);
  color:var(--text);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height:1.3;
}
.container{
  max-width:1100px;
  margin:0 auto;
  padding:24px;
}
.topbar{
  background: #0b0b0b;
  border-bottom:1px solid rgba(255,255,255,0.02);
  position:sticky;
  top:0;
  z-index:10;
}
.topbar .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.brand .brand-x{
  font-weight:600;
  color:var(--text);
}
.brand .x{
  color:var(--accent);
  margin-left:4px;
}
.top-actions{
  display:flex;
  align-items:center;
  gap:12px;
}
.verify{
  color:var(--accent);
  text-decoration:none;
  font-size:14px;
  background:rgba(255,255,255,0.03);
  padding:8px 12px;
  border-radius:20px;
}
.icons .icon{
  background:transparent;
  border: none;
  color: #ddd;
  font-size:18px;
  padding:8px;
  cursor:pointer;
  border-radius:8px;
}
.hero{
  padding:48px 0 80px;
}
.hero-inner{
  display:flex;
  gap:40px;
  align-items:flex-start;
}
.hero-left{
  flex:1;
  min-width:0;
}
.hero-title{
  font-size:44px;
  margin:0 0 24px 0;
  font-weight:700;
  color:var(--text);
}
.hero-title .muted{
  display:block;
  color:var(--muted);
  font-weight:600;
  margin-top:8px;
}
.cta-row{ display:flex; gap:16px; margin:22px 0 30px 0; align-items:center}
.btn{
  display:inline-block;
  padding:14px 20px;
  border-radius:10px;
  text-decoration:none;
  font-weight:700;
  box-shadow:0 3px 0 rgba(0,0,0,0.5);
}
.btn.primary{
  background:var(--btn);
  color:#001;
}
.btn.ghost{
  background:#2b2b2b;
  color:#ddd;
}
.stats-row{
  display:flex;
  gap:18px;
  margin-top:10px;
  flex-wrap:wrap;
}
.stat-card{
  background:#0f0f0f;
  border-radius:16px;
  padding:18px;
  min-width:220px;
  box-shadow: 0 6px 30px rgba(0,0,0,0.6);
}
.stat-title{ color:var(--muted); font-size:14px; margin-bottom:8px}
.stat-number{ color:var(--accent); font-size:28px; font-weight:700}

.hero-right{
  width:360px;
  display:flex;
  justify-content:center;
  align-items:flex-start;
}
.hero-right img{
  width:100%;
  border-radius:12px;
  object-fit:cover;
  opacity:0.95;
  box-shadow:0 10px 40px rgba(0,0,0,0.6);
}
.site-footer{
  border-top:1px solid rgba(255,255,255,0.02);
  padding:36px 0;
  color:var(--muted);
  font-size:14px;
}
@media (max-width:900px){
  .hero-inner{flex-direction:column}
  .hero-right{width:100%}
  .hero-title{font-size:32px}
}
