@import url('https://fonts.googleapis.com/css2?family=PT+Mono&display=swap');

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: #ffffff;
  color: #111111;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.mono { font-family: 'PT Mono', 'Courier New', monospace; }

.page {
  max-width: 560px;
  margin: 0 auto;
  padding: calc(56px + env(safe-area-inset-top)) calc(24px + env(safe-area-inset-right)) calc(80px + env(safe-area-inset-bottom)) calc(24px + env(safe-area-inset-left));
}

a { color: inherit; }

h1 {
  font-size: 26px;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.3px;
}

.masthead {
  margin-bottom: 72px;
}
.masthead .top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.masthead-brand {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}
.masthead .lockup {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
}
.masthead .made-by {
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 6px;
}
.masthead img {
  height: 20px;
  width: auto;
  display: block;
}
.masthead-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
}
.masthead-nav a {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  color: #999;
}
.masthead-nav a.current { color: #111; }

.kicker {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 14px;
}

footer { margin-top: 88px; font-size: 13px; color: #555; line-height: 1.7; }

.link-line { font-size: 15px; text-decoration: underline; margin-bottom: 24px; }
