:root{
  --bg: #212121;
  --panel: #2a2a2a;
  --panel2: #262626;
  --border: rgba(255,255,255,.10);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.68);
  --accent: #8b5cf6;
  --accent2: #a78bfa;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  background: var(--bg);
  color: var(--text);
}

.container{
  width:min(1160px, 92vw);
  margin:0 auto;
}

.topbar{
  position:sticky;
  top:0;
  z-index:10;
  background: var(--panel2);
  border-bottom:1px solid var(--border);
}
.topbar-inner{
  min-height:72px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.brand{
  display:inline-flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  color:var(--text);
}
.brand-mark{
  width:36px;
  height:36px;
  border-radius:10px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.04);
  display:grid;
  place-items:center;
}
.brand-text{
  font-weight:700;
  letter-spacing:.2px;
}

.hero{
  margin-top:26px;
  display:grid;
  grid-template-columns: 1.25fr .95fr;
  gap:16px;
}
.hero-copy,.hero-stat-grid,.tool-card,.feature-item,.stat-card{
  border:1px solid var(--border);
  border-radius:16px;
  background:var(--panel2);
}
.hero-copy{
  padding:28px;
}
.eyebrow{
  margin:0 0 8px;
  color:var(--accent2);
  font-size:12px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.12em;
}
h1{
  margin:0;
  font-size:34px;
  line-height:1.2;
}
.lead{
  margin-top:14px;
  color:var(--muted);
  line-height:1.65;
}
.hero-cta{
  margin-top:22px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:11px 14px;
  border-radius:12px;
  border:1px solid var(--border);
  text-decoration:none;
  color:var(--text);
  background:rgba(255,255,255,.04);
  font-weight:600;
}
.btn.primary{
  background: rgba(139,92,246,.18);
  border-color: rgba(139,92,246,.45);
}
.btn.ghost{
  background: transparent;
}

.hero-stat-grid{
  padding:14px;
  display:grid;
  gap:10px;
}
.stat-card{
  padding:16px;
  background:var(--panel);
}
.stat-icon{
  width:34px;
  height:34px;
  border:1px solid var(--border);
  border-radius:10px;
  display:grid;
  place-items:center;
  color:var(--accent2);
  margin-bottom:10px;
}
.stat-card h3{
  margin:0;
  font-size:16px;
}
.stat-card p{
  margin:8px 0 0;
  font-size:14px;
  color:var(--muted);
  line-height:1.5;
}

.section{
  margin-top:16px;
  border:1px solid var(--border);
  border-radius:16px;
  background:var(--panel2);
  padding:18px;
}
.section-head h2{
  margin:0;
  font-size:22px;
}
.section-head p{
  margin:8px 0 0;
  color:var(--muted);
}

.tool-grid{
  margin-top:14px;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:10px;
}
.tool-card{
  padding:14px;
  background:var(--panel);
}
.tool-title{
  display:flex;
  align-items:center;
  gap:8px;
  font-weight:700;
  margin-bottom:8px;
}
.tool-card p{
  margin:0;
  color:var(--muted);
  font-size:14px;
  line-height:1.55;
}

.feature-list{
  margin-top:14px;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
}
.feature-item{
  padding:14px;
  display:flex;
  align-items:flex-start;
  gap:10px;
  color:var(--muted);
  background:var(--panel);
}
.feature-item i{
  color:var(--accent2);
  margin-top:2px;
}

.footer{
  margin:18px 0 24px;
}
.footer-inner{
  border:1px solid var(--border);
  border-radius:14px;
  background:var(--panel2);
  min-height:56px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 14px;
}
.footer p{
  margin:0;
  color:var(--muted);
}
.footer a{
  color:var(--accent2);
  text-decoration:none;
}

@media (max-width: 980px){
  .hero{
    grid-template-columns:1fr;
  }
  .tool-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}
@media (max-width: 680px){
  h1{font-size:27px}
  .topbar-inner{min-height:64px}
  .tool-grid,.feature-list{
    grid-template-columns:1fr;
  }
  .hero-copy{padding:20px}
  .section{padding:14px}
}
