:root{
  --bg: #f3f5f4;
  --text: #0f172a;
  --muted: #344054;

  /* зелёный как на макете */
  --btn: #7e9586;
  --btnHover: #6f887a;

  --radius: 18px;
}

*{ box-sizing: border-box; }
html, body { height: 100%; }

body{
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  -webkit-text-size-adjust: 100%;
}

.page{
  min-height: 100%;
  display: flex;
  justify-content: center;
  padding: 28px 16px;
}

.panel{
  width: 100%;
  max-width: 760px;
  text-align: center;
}

.logoWrap{
  display: flex;
  justify-content: center;
  margin: 6px 0 14px;
}

.logo{
  width: 92px;
  height: 92px;
  border-radius: 50%;
  object-fit: contain;
  background: rgba(255,255,255,.7);
  padding: 10px;
}

.title{
  margin: 6px 0 10px;
  font-size: clamp(20px, 3.3vw, 28px);
  font-weight: 800;
}

.subtitle{
  margin: 0 auto 18px;
  max-width: 640px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
}

.buttons{
  margin: 18px auto 10px;
  max-width: 640px;
  display: grid;
  gap: 14px;
}

/* делаем вид как у ссылок, но используем button */
.btn{
  appearance: none;
  border: none;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 16px 18px;
  border-radius: 14px;
  background: var(--btn);
  color: #fff;
  font-weight: 700;
  letter-spacing: .2px;

  transition: transform .05s ease, background .15s ease;
}

.btn:hover{ background: var(--btnHover); }
.btn:active{ transform: translateY(1px); }
.btn:focus{ outline: 2px solid rgba(0,0,0,.15); outline-offset: 2px; }

.isStub{
  opacity: .92;
}

.hint{
  margin: 12px 0 0;
  font-size: 12px;
  color: var(--muted);
}

@media (max-width: 360px){
  .btn{ padding: 14px 16px; }
  .logo{ width: 82px; height: 82px; }
}
