.home-wrap{
  max-width:1100px;
  margin:0 auto;
  padding:28px 12px 40px;
}

.home-hero{
  background:linear-gradient(180deg, rgba(2,6,23,0.06), rgba(2,6,23,0.02));
  border:1px solid rgba(2,6,23,0.08);
  border-radius:18px;
  padding:28px;
}

.home-logo{
  display:block;
  width:min(520px, 100%);
  height:auto;
  margin:0 auto 14px auto;
}

.home-eyebrow{
  margin:0 0 10px 0;
  font-weight:800;
  font-size:1.25rem;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:rgba(15,23,42,0.65);
}

.home-hero h1{
  margin:0 0 10px 0;
  font-size:clamp(1.6rem, 3.2vw, 2.4rem);
  line-height:1.15;
  color:#0f172a;
}

.home-baseline{
  margin:0 0 10px 0;
  color:rgba(15,23,42,0.78);
  font-weight:800;
  font-size:1.02rem;
  max-width:70ch;
}

.home-hero-sub{
  margin:0;
  color:rgba(15,23,42,0.72);
  font-size:1.05rem;
  max-width:70ch;
}

.home-hello{
  margin-top:14px;
  color:rgba(15,23,42,0.8);
  font-weight:700;
}

.home-reminder{
  margin-top:12px;
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:10px;
}

.home-reminder-caption{
  margin-top:10px;
  color:rgba(15,23,42,0.68);
  font-weight:700;
  font-size:0.95rem;
}

.home-kpi-grid{
  margin-top:12px;
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:12px;
}

.home-kpi{
  position:relative;
  display:flex;
  align-items:center;
  gap:12px;
  padding:14px 16px;
  border-radius:18px;
  border:1px solid rgba(15,23,42,0.10);
  background:linear-gradient(180deg, rgba(255,255,255,0.90), rgba(255,255,255,0.66));
  box-shadow:0 14px 40px rgba(2,6,23,0.10);
  overflow:hidden;
  transition: transform 0.15s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.home-kpi::after{
  content:"";
  position:absolute;
  inset:-40% -30% auto auto;
  width:220px;
  height:220px;
  border-radius:999px;
  background:radial-gradient(circle at 30% 30%, rgba(124,240,255,0.35), rgba(59,130,246,0.0) 60%);
  pointer-events:none;
}

.home-kpi:hover{
  transform: translateY(-1px);
  box-shadow:0 18px 54px rgba(2,6,23,0.14);
  border-color: rgba(59,130,246,0.18);
}

.home-kpi-icon{
  width:44px;
  height:44px;
  border-radius:16px;
  display:grid;
  place-items:center;
  font-size:20px;
  background:rgba(15,23,42,0.06);
  border:1px solid rgba(15,23,42,0.10);
  flex:0 0 auto;
}

.home-kpi-body{ min-width:0; }

.home-kpi-value{
  font-weight:950;
  font-size:1.6rem;
  letter-spacing:-0.03em;
  color:#0f172a;
  line-height:1.1;
}

.home-kpi-label{
  margin-top:2px;
  font-weight:800;
  color:rgba(15,23,42,0.72);
  font-size:0.95rem;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.home-kpi--draft{ border-left:4px solid rgba(245,158,11,0.9); }
.home-kpi--sent{ border-left:4px solid rgba(59,130,246,0.9); }

.home-cta-row{
  margin-top:18px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.home-btn-primary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid rgba(59,130,246,0.35);
  background:linear-gradient(135deg, rgba(59,130,246,0.95), rgba(102,126,234,0.95));
  color:#fff;
  text-decoration:none;
  font-weight:900;
  font-size:1rem;
  min-width:220px;
}

.home-btn-secondary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid rgba(15,23,42,0.12);
  background:rgba(255,255,255,0.85);
  color:#0f172a;
  text-decoration:none;
  font-weight:900;
  font-size:1rem;
}

.home-actions{
  margin-top:18px;
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:14px;
}

.home-card{
  background:#fff;
  border:1px solid rgba(15,23,42,0.10);
  border-radius:16px;
  padding:16px;
  box-shadow:0 10px 24px rgba(2,6,23,0.06);
  min-height:140px;
  display:flex;
  flex-direction:column;
  gap:8px;
}

.home-card h3{
  margin:0;
  font-size:1.05rem;
  color:#0f172a;
}

.home-card p{
  margin:0;
  color:rgba(15,23,42,0.70);
  font-size:0.95rem;
  line-height:1.4;
  flex:1;
}

.home-card a{
  font-weight:900;
  text-decoration:none;
  color:#2563eb;
}

.home-how{
  margin-top:18px;
  background:#fff;
  border:1px solid rgba(15,23,42,0.10);
  border-radius:16px;
  padding:18px;
  box-shadow:0 10px 24px rgba(2,6,23,0.06);
}

.home-how h2{
  margin:0 0 12px 0;
  font-size:1.2rem;
  color:#0f172a;
}

.home-steps{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:12px;
}

.home-step{
  border:1px solid rgba(15,23,42,0.08);
  border-radius:14px;
  padding:14px;
  background:rgba(2,6,23,0.02);
}

.home-step-num{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:32px;
  height:32px;
  border-radius:12px;
  background:rgba(59,130,246,0.12);
  border:1px solid rgba(59,130,246,0.25);
  color:#1d4ed8;
  font-weight:900;
  margin-bottom:8px;
}

.home-step h3{
  margin:0 0 6px 0;
  font-size:1rem;
  color:#0f172a;
}

.home-step p{
  margin:0;
  color:rgba(15,23,42,0.70);
  font-size:0.92rem;
  line-height:1.4;
}

@media (max-width: 980px){
  .home-actions{ grid-template-columns:1fr; }
  .home-steps{ grid-template-columns:1fr; }
  .home-btn-primary{ width:100%; }
  .home-btn-secondary{ width:100%; }
  .home-reminder{ grid-template-columns:1fr; }
  .home-kpi-grid{ grid-template-columns:1fr; }
}
