:root {
  color-scheme: light;
  --bg: #fafafa;
  --text: #191917;
  --muted: #6d6b65;
  --faint: #9b9890;
  --line: #e9e8e3;
  --surface: #ffffff;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family:
    ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  min-height: 100vh;
}

.page {
  width: min(100% - 40px, 620px);
  margin: 0 auto;
  padding: 72px 0 96px;
}

.masthead {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 70px;
  margin: -6px 0 126px -6px;
  padding: 6px 10px 6px 6px;
}

.masthead-mark {
  display: block;
  width: 58px;
  height: 58px;
  clip-path: circle(46% at 50% 50%);
}

.masthead-label {
  color: #56544f;
  font-size: 14px;
  font-weight: 560;
  line-height: 1.35;
  opacity: 0;
  transform: translate3d(-10px, 0, 0);
  transform-origin: left center;
  pointer-events: none;
  will-change: opacity, transform;
  transition:
    opacity 180ms ease,
    transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.masthead:hover .masthead-label {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  animation: label-settle 740ms both;
}

@keyframes label-settle {
  0% {
    opacity: 0;
    transform: translate3d(-10px, 0, 0);
  }

  48% {
    opacity: 1;
    transform: translate3d(2px, 0, 0);
  }

  68% {
    transform: translate3d(-0.6px, 0, 0);
  }

  84% {
    transform: translate3d(0.2px, 0, 0);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .masthead-label,
  .masthead:hover .masthead-label {
    animation: none;
    transition: opacity 120ms ease;
    transform: none;
  }
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

h2 {
  margin-bottom: 34px;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.35;
}

h3 {
  font-size: 15px;
  font-weight: 560;
  line-height: 1.4;
}

p {
  font-size: 15px;
  line-height: 1.68;
}

.muted {
  color: var(--muted);
}

.section {
  margin-top: 138px;
}

.copy {
  display: grid;
  gap: 9px;
  max-width: 560px;
  color: var(--muted);
}

.copy p {
  line-height: 1.54;
}

.brand-list {
  display: grid;
  gap: 9px;
}

.brand {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  column-gap: 10px;
  min-height: 34px;
  padding: 1px 0;
}

.brand-mark {
  justify-self: center;
  object-fit: contain;
}

.brand-mark-humanbased {
  width: 25px;
  height: 25px;
}

.brand-mark-xny {
  width: 34px;
  height: 34px;
  clip-path: circle(40% at 50% 50%);
}

.brand-mark-outtrain {
  width: 30px;
  height: 32px;
}

.brand-line {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 7px;
  font-size: 14px;
  line-height: 1.45;
}

.brand-link {
  color: #56544f;
  font-weight: 540;
  text-decoration: none;
  transition:
    color 150ms var(--ease-out),
    text-decoration-color 150ms var(--ease-out);
}

.brand-link:hover,
.brand-link:focus-visible {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: var(--faint);
  text-underline-offset: 3px;
}

.brand-line span {
  color: var(--faint);
  font-size: 13px;
}

.people-list {
  display: grid;
  gap: 10px;
  margin-top: -8px;
}

.people-list p {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 7px;
  color: var(--faint);
  font-size: 13.5px;
  line-height: 1.45;
}

.people-list span {
  color: #615f59;
  font-weight: 520;
}

.people-list em {
  color: var(--faint);
  font-style: normal;
  font-size: 13px;
}

.people-list code {
  color: #aaa79f;
  font-family:
    "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
}

.community-line {
  margin-top: 2px;
}

.alumni-line {
  margin-top: 7px;
}

.people-list .alumni-line span {
  color: #504e49;
  font-weight: 560;
}

.people-list .alumni-line em {
  color: #8b8881;
}

.footer {
  width: min(100% - 40px, 620px);
  margin: 0 auto;
  padding: 0 0 48px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}

@media (max-width: 620px) {
  .page {
    width: min(100% - 32px, 620px);
    padding-top: 44px;
  }

  .masthead {
    margin-bottom: 96px;
  }

  .masthead-mark {
    width: 52px;
    height: 52px;
  }

  .section {
    margin-top: 104px;
  }

  .brand {
    grid-template-columns: 32px minmax(0, 1fr);
    min-height: 32px;
  }
}
