/* style.css */
:root{
  --bg:#ffffff;
  --text:#111111;
  --muted:#444444;
  --light:#777777;
  --rule:#e9e9e9;
  --link:#0b57d0;
}

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

body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  line-height:1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.wrap{
  max-width: 820px;
  margin: 0 auto;
  padding: 70px 22px 60px;
  text-align: center;
}

.header{
  margin-bottom: 34px;
}

.brand{
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--light);
  margin-bottom: 16px;
}

h1{
  margin: 0 0 10px;
  font-size: 44px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.line{
  margin: 8px 0;
  color: var(--muted);
  font-size: 16px;
}

.links{
  color: var(--light);
}

.sep{
  padding: 0 10px;
  color: var(--rule);
}

.note{
  margin-top: 14px;
  color: var(--light);
}

.section{
  border-top: 1px solid var(--rule);
  padding-top: 26px;
  margin-top: 26px;
  text-align: left;
}

.section h2{
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.section p{
  margin: 0;
  color: var(--muted);
  max-width: 70ch;
}

.section ul{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.section li{
  margin: 7px 0;
}

a{
  color: var(--link);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

a:hover{
  border-bottom-color: rgba(11,87,208,0.35);
}

strong{
  color: var(--text);
  font-weight: 600;
}

.footer{
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--rule);
  color: var(--light);
  font-size: 14px;
  text-align: center;
}
