* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: #0a0a0a;
  color: #e8e8e8;
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

main {
  max-width: 640px;
  margin: 0 auto;
  padding: 80px 24px 40px;
}

header {
  margin-bottom: 40px;
}

h1 {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 12px;
}

.tagline {
  font-size: 18px;
  color: #b8b8b8;
  font-weight: 400;
}

.snippet {
  margin-bottom: 32px;
}

pre {
  background: #161616;
  border: 1px solid #2a2a2a;
  border-radius: 6px;
  padding: 20px 24px;
  overflow-x: auto;
  font-family: "SF Mono", "Monaco", "Inconsolata", "Roboto Mono", monospace;
  font-size: 13px;
  line-height: 1.7;
  color: #d4d4d4;
}

code {
  font-family: inherit;
}

.pitch {
  margin-bottom: 32px;
}

.pitch p {
  color: #b8b8b8;
  margin-bottom: 16px;
}

.pitch p:last-child {
  margin-bottom: 0;
  color: #e8e8e8;
}

.signup {
  margin-bottom: 48px;
}

.signup form {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.signup label {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.signup input {
  flex: 1;
  padding: 12px 16px;
  background: #161616;
  border: 1px solid #2a2a2a;
  border-radius: 6px;
  color: #e8e8e8;
  font-size: 15px;
  font-family: inherit;
}

.signup input:focus {
  outline: none;
  border-color: #4a9eff;
}

.signup button {
  padding: 12px 20px;
  background: #ffffff;
  color: #0a0a0a;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
}

.signup button:hover {
  background: #e8e8e8;
}

.signup-note {
  font-size: 13px;
  color: #888888;
}

footer {
  padding-top: 32px;
  border-top: 1px solid #1f1f1f;
  font-size: 14px;
  color: #888888;
}

footer a {
  color: #b8b8b8;
  text-decoration: none;
}

footer a:hover {
  color: #ffffff;
}

footer span {
  margin: 0 8px;
  color: #444444;
}

@media (max-width: 480px) {
  main {
    padding: 48px 20px 32px;
  }
  h1 {
    font-size: 28px;
  }
  .tagline {
    font-size: 16px;
  }
  pre {
    font-size: 12px;
    padding: 16px;
  }
  .signup form {
    flex-direction: column;
  }
}
