/* ======= LAYOUT STYLES ======= */
.topbar{
  display:flex;
  align-items:center;
  gap:12px;
  margin:0 0 12px 2px;
  user-select:none;
}

.logo{
  width:46px;height:46px;
  border-radius:14px;
  background:#fff;
  border:1px solid rgba(11,77,42,.12);
  box-shadow: 0 10px 20px rgba(0,0,0,.06);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  flex:0 0 auto;
}

.logo img{
  width:100%;
  height:100%;
  object-fit:contain;
  padding:6px;
}

.brand h1{
  margin:0;
  font-size:16px;
  letter-spacing:.2px;
  color:var(--green);
  font-weight:900;
  line-height:1.1;
}

.brand p{
  margin:3px 0 0;
  font-size:12px;
  color:var(--muted);
  font-weight:700;
}

.card{
  background:var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
  border: 1px solid rgba(11,77,42,.10);
}

.hero{
  padding:18px 18px 14px 18px;
  background: linear-gradient(135deg, rgba(11,77,42,.10), rgba(15,106,56,.06));
  border-bottom:1px solid rgba(11,77,42,.10);
}

.hero h2{
  margin:0 0 6px 0;
  font-size:20px;
  line-height:1.2;
  color:var(--green);
  font-weight:1000;
}

.hero .sub{
  margin:0;
  color:var(--muted);
  font-size:13px;
  line-height:1.35;
  font-weight:650;
}

.screen{
  padding:22px 18px;
  min-height: 410px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  gap:12px;
  position:relative;
}

.cta{
  margin-top:10px;
  width:100%;
  display:grid;
  gap:10px;
}
