
:root{
  --bg:#ffffff;
  --ink:#2f343d;
  --accent:#BEA46C;
}

*{box-sizing:border-box;}

html,body{
  height:100%;
  margin:0;
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial;
}

body{
  display:flex;
  align-items:center;
  justify-content:center;
  background: radial-gradient(circle at 20% 20%, rgba(190,164,108,.18), transparent 40%),
              radial-gradient(circle at 80% 30%, rgba(190,164,108,.10), transparent 45%),
              var(--bg);
  color:var(--ink);
}

.wrap{
  display:flex;
  flex-direction:column;
  align-items:center;   /* CENTER EVERYTHING */
  justify-content:center;
  text-align:center;
  padding:24px;
}

.logo{
  width:96px;
  height:96px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:18px;
}

h1{
  font-size:44px;
  margin:0;
  letter-spacing:-1px;
}

p{
  margin:10px auto 0;
  max-width:520px;
  color:rgba(47,52,61,.72);
  line-height:1.7;
}

.badge{
  margin-top:18px;
  display:inline-block;
  padding:8px 14px;
  border-radius:999px;
  border:1px solid rgba(190,164,108,.35);
  background:rgba(190,164,108,.12);
  font-size:13px;
}
