:root{
  --stl-green:#2E9E54;
  --stl-green-d:#1F7E41;
  --stl-border:#E4ECDD;
  --stl-muted:#5A6B5C;
  --stl-bg:#EEF5E9;
  --stl-ink:#16241A;
  --stl-shadow:0 1px 2px rgba(20,40,25,.05),0 10px 30px -14px rgba(20,50,28,.18);
  --stl-inner:600px;
}
.stl-card{
  width:100%;
  max-width:900px;
  margin:28px auto;
  background:var(--stl-bg);
  border:1px solid var(--stl-border);
  border-radius:18px;
  padding:36px 24px;
  box-shadow:var(--stl-shadow);
  text-align:center;
}
.stl-headline{
  margin:0 0 8px 0;
  font-weight:800;
  font-size:32px;
  letter-spacing:-.01em;
  color:var(--stl-ink);
  font-family:Arial,Helvetica,sans-serif;
}
.stl-subheadline{
  color:var(--stl-muted);
  font-size:18px;
  margin-bottom:20px;
}
.stl-controls{
  display:flex; gap:12px; align-items:center; justify-content:center;
  margin:0 auto;
  max-width:var(--stl-inner);
}
.stl-input{
  flex:1;
  height:54px;
  padding:0 18px;
  border:2px solid var(--stl-ink);
  border-radius:999px;
  font-size:17px;
  background:#fff;
}
.stl-input:focus{ outline:none; box-shadow:0 0 0 3px rgba(46,158,84,.2); border-color:var(--stl-green) }
.stl-button{
  height:54px;
  padding:0 26px;
  border:0; border-radius:999px; cursor:pointer;
  background:var(--stl-green); color:#fff; font-weight:700; font-size:17px;
  white-space:nowrap;
  font-family:Arial,Helvetica,sans-serif;
}
.stl-button:hover{ background:var(--stl-green-d) }
.stl-consent{ font-size:14px; color:var(--stl-muted); margin-top:10px }
.stl-message{ margin-top:12px; font-size:14px; text-align:center; color:var(--stl-green-d); font-weight:600 }
.stl-form.stl-loading{ opacity:.6; pointer-events:none }
.screen-reader-text{ position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); border:0 }
@media (max-width: 600px){
  .stl-headline{ font-size:26px }
  .stl-subheadline{ font-size:16.5px }
  .stl-controls{ flex-direction: column; align-items: stretch; }
  .stl-button{ width: 100%; }
}
