:root{
  --bg:#ffffff;
  --text:#3b353d;
  --accent:#2ec5e6;
  --pill:#9e9e9e;
  --pill-text:#ffffff;
  --max-width:1400px;
}

*{
  box-sizing:border-box;
}

body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:"Poppins", sans-serif;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

a{
  color:inherit;
  text-decoration:none;
}

.wrapper{
  max-width:var(--max-width);
  margin:0 auto;
  padding:40px;
}

header{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:32px;
  margin-bottom:110px;
}

.brand{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:14px;
}

.logo{
  font-size:22px;
  font-weight:700;
  letter-spacing:-0.03em;
  line-height:1;
  text-align:center;
  text-decoration:none;
  color:inherit;
}

.pill-button{
  display:inline-block;
  background:var(--pill);
  color:var(--pill-text);
  padding:13px 24px;
  border-radius:999px;
  font-size:16px;
  font-weight:600;
  line-height:1;
  border:none;
  cursor:pointer;
  font-family:"Poppins", sans-serif;
  text-decoration:none;
}

.contact-meta{
  text-align:right;
  font-size:16px;
  line-height:1.35;
  font-weight:500;
}

.contact-meta .name{
  color:var(--accent);
  font-weight:700;
}

@media (max-width:860px){
  .wrapper{
    padding:28px 22px 48px;
  }

  header{
    flex-direction:column;
    margin-bottom:56px;
  }

  .contact-meta{
    text-align:left;
  }
}