:root{
  --bg:#F8FAFC;
  --card:#FFFFFF;
  --muted:#64748B;
  --accent:#2563EB;
  --accent-2:#7C3AED;
  --text:#0F172A;
  --radius:12px;
  --container:1200px;
  font-family:Inter, system-ui, -apple-system, Roboto, "Helvetica Neue", Arial;
}

*{ box-sizing:border-box; }
html,body{
  height:100%;
  margin:0;
  background:var(--bg);
  color:var(--text);
}
.container{
  max-width:var(--container);
  margin:0 auto;
  padding:28px;
}

.site-header{
  background:transparent;
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.brand{
  display:flex;
  gap:12px;
  align-items:center;
}
.logo{
  width:44px;
  height:44px;
  background:linear-gradient(135deg,var(--accent),var(--accent-2));
  color:#fff;
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
}
.product{
  font-weight:700;
}
.tagline{
  font-size:13px;
  color:var(--muted);
}
.nav{
  display:flex;
  gap:12px;
  align-items:center;
}
.nav a{
  color:var(--muted);
  text-decoration:none;
  font-size:14px;
}
.btn{
  padding:10px 14px;
  border-radius:10px;
  border:0;
  cursor:pointer;
  font-weight:600;
}
.btn.primary{
  background:var(--accent);
  color:#fff;
}
.btn.outline{
  background:#fff;
  border:1px solid #e6eef8;
  color:var(--text);
}

.hero{
  text-align:center;
  padding:40px 0;
}
.hero h1{
  font-size:34px;
  margin:6px 0;
}
.lead{
  color:var(--muted);
  max-width:720px;
  margin:10px auto;
}
.keywords{
  display:flex;
  gap:8px;
  justify-content:center;
  margin:10px 0;
}
.k{
  background:#fff;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid #eef3ff;
  font-size:13px;
}
.hero-card{
  background:var(--card);
  width:720px;
  margin:18px auto;
  padding:18px;
  border-radius:12px;
  box-shadow:0 8px 30px rgba(2,6,23,0.04);
  max-width:100%;
}

.segmented{
  display:inline-flex;
  background:#f8fafc;
  border-radius:999px;
  padding:4px;
}
.seg-btn{
  padding:8px 18px;
  border-radius:999px;
  border:0;
  background:transparent;
  cursor:pointer;
  font-size:14px;
}
.seg-btn.active{
  background:linear-gradient(90deg,var(--accent),var(--accent-2));
  color:#fff;
}

.input{
  width:100%;
  padding:12px;
  border-radius:10px;
  border:1px solid #eef3ff;
  margin-bottom:10px;
  font-size:15px;
}

.actions{
  display:flex;
  gap:8px;
  justify-content:center;
  align-items:center;
  margin-bottom:8px;
}

.muted{
  color:var(--muted);
  font-size:14px;
}

.section{
  padding:40px 0;
}
.section-title{
  font-weight:700;
  margin-bottom:8px;
  font-size:18px;
}

.grid{
  display:grid;
  gap:12px;
}
.grid-4{
  grid-template-columns:repeat(4,1fr);
}
.grid-3{
  grid-template-columns:repeat(3,1fr);
}

.feature-card{
  background:var(--card);
  padding:18px;
  border-radius:12px;
  box-shadow:0 6px 18px rgba(12,18,30,0.04);
}
.persona{
  background:var(--card);
  padding:18px;
  border-radius:12px;
  text-align:center;
  box-shadow:0 6px 18px rgba(12,18,30,0.04);
}

.trusted-logos{
  display:flex;
  gap:12px;
}
.logo-spot{
  width:120px;
  height:40px;
  background:#fff;
  border-radius:8px;
  box-shadow:0 4px 12px rgba(2,6,23,0.04);
}

.cta-card{
  background:linear-gradient(180deg,#fff,#fbfdff);
  padding:18px;
  border-radius:12px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
}
.cta-action{
  display:flex;
  gap:8px;
  margin-top:12px;
}
.cta-action .input{
  width:260px;
}

.site-footer{
  padding:20px 0;
  border-top:1px solid #e6eef8;
  text-align:center;
  font-size:14px;
}

/* RESULTS PAGE */
.results-page .results-grid{
  display:grid;
  grid-template-columns:1fr 360px;
  gap:18px;
  margin-top:20px;
}
.card{
  background:var(--card);
  padding:16px;
  border-radius:12px;
  box-shadow:0 6px 20px rgba(2,6,23,0.04);
}

/* Responsive */
@media(max-width:980px){
  .grid-4,
  .grid-3{
    grid-template-columns:1fr;
  }
  .hero-card{
    width:100%;
  }
  .results-page .results-grid{
    grid-template-columns:1fr;
  }
  .cta-card{
    flex-direction:column;
    text-align:center;
  }
}
