:root{
  --maxw:1100px;
  --dark:#0f172a;
  --muted:#475569;
  --accent:#6366f1;
  --bg:linear-gradient(135deg,#fdf2f8 0%,#eef2ff 100%);
}

/* COMPACT PILLAR v20260211e */

*{box-sizing:border-box}

body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,sans-serif;
  background:var(--bg);
  color:var(--dark);
  line-height:1.45;
}

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

.site-header{
  background:#fff;
  border-bottom:1px solid #e2e8f0;
  padding:12px 0;
}

.row{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.brand a{
  font-weight:800;
  font-size:16px;
  text-decoration:none;
  color:var(--dark);
}

nav a{
  margin-left:14px;
  text-decoration:none;
  font-weight:600;
  color:var(--dark);
}

/* HERO: keep above the fold, not the entire page */
.hero{
  padding:22px 0 18px;
}

.hero-grid{
  display:grid;
  gap:20px;
  align-items:center;
}

@media(min-width:900px){
  .hero-grid{
    grid-template-columns:1.1fr 0.9fr;
  }
}

h1{
  font-size:32px;
  line-height:1.08;
  margin:0 0 10px 0;
  letter-spacing:-0.2px;
}

.lead{
  font-size:16px;
  color:var(--muted);
  margin:0 0 12px 0;
}

.bullets{
  padding-left:18px;
  margin:0 0 12px 0;
  color:var(--muted);
}

.bullets li{ margin:4px 0; }

.cta-row{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin:0 0 10px 0;
}

.btn-primary{
  background:var(--accent);
  color:#fff;
  padding:11px 18px;
  border-radius:12px;
  text-decoration:none;
  font-weight:700;
}

.btn-secondary{
  background:#fff;
  border:1px solid #e2e8f0;
  padding:11px 18px;
  border-radius:12px;
  text-decoration:none;
  font-weight:700;
  color:var(--dark);
}

.sample{
  font-size:13px;
  margin:0;
}

.hero-image img{
  width:100%;
  border-radius:18px;
  box-shadow:0 14px 34px rgba(0,0,0,0.12);
  max-height:56vh;
  object-fit:cover;
}

/* Sections: tighter but still readable */
.section{
  padding:26px 0;
}

h2{
  font-size:21px;
  margin:0 0 14px 0;
}

.card-grid{
  display:grid;
  gap:14px;
}

@media(min-width:900px){
  .card-grid{
    grid-template-columns:repeat(3,1fr);
  }
}

.card{
  background:#fff;
  padding:18px;
  border-radius:14px;
  box-shadow:0 8px 22px rgba(0,0,0,0.05);
}

.card h3{
  margin:0 0 8px 0;
  font-size:15px;
}

.card p{
  margin:0;
  color:var(--muted);
  font-size:13px;
  line-height:1.5;
}

.footer{
  background:#fff;
  border-top:1px solid #e2e8f0;
  padding:18px 0;
  text-align:center;
  color:var(--muted);
  font-size:13px;
}

@media(max-width:520px){
  h1{ font-size:28px; }
  .hero-image img{ max-height:44vh; }
}
