/* Welcome + setup wizard */

.hero{
  max-width:960px; margin:0 auto; padding:72px 24px 40px; text-align:center;
}
.hero .logo{justify-content:center; margin-bottom:26px}
.hero .logo .mark{width:36px; height:36px; border-radius:10px; font-size:17px}
.hero .logo span.name{font-size:19px}
.hero h1{
  font-size:clamp(32px,5.4vw,50px); line-height:1.06; font-weight:750;
  letter-spacing:-.03em; margin-bottom:16px;
}
.hero .lede{
  font-size:18.5px; line-height:1.5; color:var(--ink-soft);
  max-width:620px; margin:0 auto 30px;
}
.hero .cta{display:flex; gap:12px; justify-content:center; flex-wrap:wrap}
.btn-lg{font-size:15px; padding:12px 26px; border-radius:10px}

.proof{
  max-width:960px; margin:0 auto; padding:0 24px 56px;
  display:grid; grid-template-columns:repeat(auto-fit,minmax(200px,1fr)); gap:14px;
}
.proof-card{
  background:var(--card); border:1px solid var(--rule); border-radius:var(--r-lg);
  padding:18px 20px; box-shadow:var(--shadow-sm); text-align:left;
}
.proof-card .v{font-size:29px; font-weight:750; letter-spacing:-.025em; line-height:1.1;
  font-variant-numeric:tabular-nums; color:var(--kc,var(--ink))}
.proof-card .l{font-size:13px; color:var(--ink-soft); margin-top:5px; line-height:1.4}

.features{
  max-width:1080px; margin:0 auto; padding:0 24px 70px;
  display:grid; grid-template-columns:repeat(auto-fit,minmax(268px,1fr)); gap:16px;
}
.feature{
  background:var(--card); border:1px solid var(--rule); border-radius:var(--r-lg);
  padding:20px 22px; box-shadow:var(--shadow-sm);
}
.feature .ico{
  width:34px; height:34px; border-radius:9px; display:grid; place-items:center;
  background:var(--accent-wash); color:var(--accent); font-size:17px; margin-bottom:12px;
}
.feature h3{font-size:15.5px; font-weight:700; margin-bottom:6px}
.feature p{font-size:13.5px; color:var(--ink-soft); line-height:1.5; margin:0}

/* ---------- wizard ---------- */
.wiz{max-width:760px; margin:0 auto; padding:34px 24px 90px}
.steps{display:flex; align-items:center; gap:0; margin-bottom:34px}
.step-i{display:flex; align-items:center; gap:10px; flex:1}
.step-i:last-child{flex:none}
.step-i .num{
  width:28px; height:28px; border-radius:50%; display:grid; place-items:center; flex:none;
  font-size:12.5px; font-weight:700; border:2px solid var(--rule);
  color:var(--muted); background:var(--card);
}
.step-i .nm{font-size:13px; font-weight:650; color:var(--muted); white-space:nowrap}
.step-i .bar{flex:1; height:2px; background:var(--rule); margin:0 12px; min-width:16px}
.step-i.done .num{background:var(--good); border-color:var(--good); color:#fff}
.step-i.done .nm{color:var(--ink-soft)}
.step-i.done .bar{background:var(--good)}
.step-i.now .num{border-color:var(--accent); color:var(--accent); background:var(--accent-wash)}
.step-i.now .nm{color:var(--ink)}

.wizcard{
  background:var(--card); border:1px solid var(--rule); border-radius:14px;
  padding:28px 30px; box-shadow:var(--shadow);
}
.wizcard h2{font-size:22px; font-weight:700; margin-bottom:8px}
.wizcard .lede{font-size:14.5px; color:var(--ink-soft); margin-bottom:22px; line-height:1.55}

.guide{
  background:var(--raised); border:1px solid var(--rule); border-radius:var(--r);
  padding:16px 18px; margin-bottom:22px;
}
.guide h4{
  font-family:var(--mono); font-size:10.5px; letter-spacing:.12em; text-transform:uppercase;
  color:var(--muted); font-weight:600; margin-bottom:10px;
}
.guide ol{margin:0; padding-left:19px; font-size:13.5px; line-height:1.65}
.guide li{margin-bottom:6px}
.guide li:last-child{margin-bottom:0}
.guide code{
  font-family:var(--mono); font-size:12px; background:var(--card);
  border:1px solid var(--rule); border-radius:4px; padding:1px 5px;
}
.guide .path{color:var(--accent); font-weight:650}

.copyrow{display:flex; gap:8px; align-items:center; margin-top:8px}
.copyrow input{
  flex:1; font-family:var(--mono); font-size:12px; padding:8px 11px;
  border:1px solid var(--rule); border-radius:var(--r);
  background:var(--raised); color:var(--ink-soft);
}
.scopes{display:flex; gap:6px; flex-wrap:wrap; margin-top:6px}
.scope{
  font-family:var(--mono); font-size:11.5px; padding:3px 9px; border-radius:5px;
  background:var(--accent-wash); color:var(--accent); font-weight:650;
}
.connected{
  display:flex; align-items:center; gap:9px; padding:12px 15px;
  background:var(--good-wash); border:1px solid var(--good);
  border-radius:var(--r); font-size:13.5px; color:var(--good); font-weight:650;
}
.review-row{
  display:flex; align-items:center; justify-content:space-between; gap:14px;
  padding:14px 0; border-bottom:1px solid var(--rule-soft);
}
.review-row:last-of-type{border-bottom:none}
.review-row .k{font-size:13.5px; font-weight:650}
.review-row .v{font-size:13px; color:var(--ink-soft); font-family:var(--mono)}
