:root{
  --bg:#fafafa;
  --card:#ffffff;
  --text:#121212;
  --muted:#5a5a5a;
  --border:#ececec;
  --shadow: 0 10px 30px rgba(0,0,0,.06);
  --brand:#f26d6d;
  --brand-dark:#e85f5f;
  --good:#1a7f37;
  --warn:#b54708;
  --radius:18px;
}

*{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:linear-gradient(180deg, #fff 0%, var(--bg) 100%);
}

a{color:inherit;}

.container{
  max-width: 980px;
  margin: 0 auto;
  padding: 22px 16px 48px;
}

.topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom: 18px;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:800;
  letter-spacing:-0.02em;
}

.brand .logo{
  width:28px;height:28px;
  display:grid;place-items:center;
  background:#fff;
  border:1px solid var(--border);
  border-radius:9px;
  box-shadow:0 4px 12px rgba(0,0,0,.05);
}

.pill{
  font-size:12px;
  padding:8px 10px;
  border:1px solid var(--border);
  border-radius:999px;
  background:#fff;
  color:var(--muted);
}

.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
}

.hero{
  display:grid;
  gap: 14px;
}

.h1{
  font-size: clamp(30px, 5vw, 46px);
  line-height:1.05;
  letter-spacing:-0.03em;
  margin:0;
}

.sub{
  margin:0;
  color:var(--muted);
  font-size: clamp(16px, 2.3vw, 19px);
  line-height:1.45;
}

.ctaRow{
  display:flex;
  flex-wrap:wrap;
  gap: 12px;
  margin-top: 10px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 14px 16px;
  border-radius: 16px;
  border:1px solid transparent;
  font-weight:800;
  text-decoration:none;
  min-height: 50px;
  white-space:nowrap;
}

.btn-primary{
  background: var(--brand);
  color:#fff;
}
.btn-primary:hover{background: var(--brand-dark);}

.btn-secondary{
  background:#f2f2f2;
  border-color:#e7e7e7;
  color:#111;
}
.btn-secondary:hover{background:#ededed;}

.btn-ghost{
  background: transparent;
  border-color: var(--border);
  color: var(--muted);
}

.grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 860px){
  .grid-2{grid-template-columns: 1fr 1fr;}
}

.kpis{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  margin-top: 6px;
}

.kpi{
  padding: 10px 12px;
  border:1px solid var(--border);
  border-radius: 14px;
  background:#fff;
  color: var(--muted);
  font-size: 13px;
}

.sectionTitle{
  margin: 0;
  font-size: 18px;
  letter-spacing:-0.02em;
}

.steps{
  display:grid;
  gap:10px;
}

.step{
  display:flex;
  gap: 12px;
  padding: 12px;
  border:1px solid var(--border);
  border-radius: 16px;
  background: #fff;
}

.step .icon{
  width:36px;height:36px;
  border-radius: 12px;
  display:grid;place-items:center;
  background:#fff7f7;
  border:1px solid #ffe1e1;
}

.step strong{display:block; margin-bottom: 2px;}
.step span{color:var(--muted); font-size:14px; line-height:1.35;}

.noteBox{
  border:1px solid var(--border);
  border-radius: 16px;
  padding: 14px;
  background: #fff;
}
.noteBox pre{
  margin:0;
  white-space:pre-wrap;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 13px;
  line-height: 1.45;
  color:#222;
}

.templateRow{display:flex; justify-content:space-between; align-items:flex-start; gap:12px; flex-wrap:wrap;}

.small{
  font-size: 13px;
  color: var(--muted);
}

.footer{
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 8px 10px;
  border-radius: 999px;
  border:1px solid var(--border);
  background:#fff;
  font-size: 13px;
  color: var(--muted);
}

hr.sep{
  border:0;
  border-top:1px solid var(--border);
  margin: 18px 0;
}
