:root {
  color-scheme: light;
  color: #1e1e20;
  background: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

body {
  width: min(100% - 48px, 1040px);
  min-height: 100vh;
  margin: 0 auto;
  background: #fff;
}

a {
  color: inherit;
}

header,
footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header {
  min-height: 84px;
  border-bottom: 1px solid #e5e5e5;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 17px;
  font-weight: 680;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.wordmark img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.soon,
.kicker,
.platforms,
footer {
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
}

.soon {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

main {
  min-height: calc(100vh - 166px);
  display: grid;
  grid-template-columns: minmax(220px, 340px) minmax(0, 600px);
  gap: clamp(48px, 8vw, 104px);
  align-items: center;
  padding: 64px 0;
}

.logo {
  width: min(100%, 300px);
  height: auto;
  justify-self: center;
}

.copy {
  max-width: 600px;
}

.kicker {
  margin: 0 0 16px;
  color: #666;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(48px, 7vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.blurb {
  max-width: 560px;
  margin: 26px 0 0;
  color: #4f4f54;
  font-size: 18px;
  line-height: 1.55;
  letter-spacing: -0.01em;
}

ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 28px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid #e5e5e5;
  list-style: none;
}

li {
  font-size: 14px;
  font-weight: 650;
}

li:not(:last-child)::after {
  content: "·";
  margin-left: 18px;
  color: #aaa;
}

.platforms {
  margin: 22px 0 0;
  color: #777;
  font-size: 11px;
  line-height: 1.5;
}

footer {
  min-height: 82px;
  border-top: 1px solid #e5e5e5;
  color: #777;
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (max-width: 720px) {
  body {
    width: min(100% - 30px, 1040px);
  }

  header {
    min-height: 72px;
  }

  .wordmark img {
    width: 36px;
    height: 36px;
  }

  main {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 54px 0 64px;
  }

  .logo {
    width: 190px;
    justify-self: start;
  }

  h1 {
    font-size: clamp(48px, 14vw, 68px);
  }

  .blurb {
    font-size: 17px;
  }

  li:not(:last-child)::after {
    display: none;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
  }
}
