/**
 * HP-1 — Homepage marketing strip (trust + dual CTA + quiet proof).
 * Gold/slate StreamLumi — not purple-default AI chrome.
 */
.sl-hp1-strip{
  --hp1-gold:#f5c542;
  --hp1-line:rgba(255,255,255,.1);
  --hp1-mute:#9aa3b5;
  position:relative;
  z-index:3;
  clear:both;
  box-sizing:border-box;
  margin:10px 0 14px;
  padding:14px 16px 12px;
  border-radius:18px;
  border:1px solid var(--hp1-line);
  background:
    radial-gradient(120% 160% at 0% 0%, rgba(245,197,66,.1), transparent 50%),
    linear-gradient(180deg, rgba(12,16,26,.92), rgba(8,10,16,.88));
  box-shadow:0 18px 40px -28px rgba(0,0,0,.85);
  font-family:"Manrope",system-ui,sans-serif;
}
/* Sit in the desktop content lane — never under the left sidebar. */
@media (min-width:1200px){
  body .sl-hp1-strip{
    width:calc(100% - var(--sl-sidebar-lane, var(--desktop-sidebar-width, 270px))) !important;
    max-width:calc(100% - var(--sl-sidebar-lane, var(--desktop-sidebar-width, 270px))) !important;
    margin-left:var(--sl-sidebar-lane, var(--desktop-sidebar-width, 270px)) !important;
    margin-right:0 !important;
    padding-left:calc(var(--sl-content-gutter, 16px) + 4px) !important;
    padding-right:calc(var(--sl-content-gutter, 16px) + 4px) !important;
  }
}
.sl-hp1-trust{
  display:flex;
  flex-wrap:wrap;
  gap:8px 14px;
  align-items:center;
  margin:0 0 12px;
  padding:0;
  list-style:none;
}
.sl-hp1-trust li{
  display:inline-flex;
  align-items:center;
  gap:7px;
  color:#e8edf7;
  font-size:12px;
  font-weight:700;
  letter-spacing:.02em;
}
.sl-hp1-trust i{color:var(--hp1-gold);font-size:12px}
.sl-hp1-row{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.sl-hp1-proof{
  margin:0;
  color:var(--hp1-mute);
  font-size:12px;
  font-weight:600;
}
.sl-hp1-proof strong{color:#fff;font-weight:800}
.sl-hp1-ctas{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.sl-hp1-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:38px;
  padding:0 16px;
  border-radius:999px;
  font-size:13px;
  font-weight:800;
  text-decoration:none !important;
  transition:transform .15s ease, background .15s ease;
}
.sl-hp1-cta:hover{transform:translateY(-1px)}
.sl-hp1-cta.primary{
  background:linear-gradient(135deg,#f5c542,#e0a818);
  color:#14110a !important;
}
.sl-hp1-cta.ghost{
  border:1px solid rgba(245,197,66,.35);
  color:#f5c542 !important;
  background:rgba(245,197,66,.08);
}
@media (max-width:560px){
  .sl-hp1-strip{padding:12px;border-radius:14px;margin:8px 8px 12px}
  .sl-hp1-row{align-items:stretch}
  .sl-hp1-ctas{width:100%}
  .sl-hp1-cta{flex:1 1 auto}
}
