@font-face {
  font-family: "Blue Sky Standard";
  src:
    url("assets/fonts/BlueSkyStandard-Regular.ttf") format("truetype"),
    local("Blue Sky Standard Regular"),
    local("Blue Sky Standard"),
    local("BlueSkyStandard-Regular");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Blue Sky Standard";
  src:
    url("assets/fonts/BlueSkyStandard-Bold.ttf") format("truetype"),
    local("Blue Sky Standard Bold"),
    local("BlueSkyStandard-Bold");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  color-scheme: light;
  --bg: #fff;
  --ink: #171719;
  --ink-soft: #3f3f46;
  --muted: #71717a;
  --accent: #10a37f;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  display: grid;
  place-items: center;
  font-family: "Blue Sky Standard", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "PingFang SC", sans-serif;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  user-select: none;
  -webkit-touch-callout: none;
}

.landing {
  display: grid;
  justify-items: center;
  gap: 0;
  padding: 32px;
  text-align: center;
}

.landing-icon {
  width: 96px;
  height: 96px;
  object-fit: contain;
}

h1 {
  margin: 28px 0 0;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: 0;
}

.lede {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
}

form {
  margin: 36px 0 0;
}

button {
  appearance: none;
  min-width: 200px;
  min-height: 50px;
  border: 0;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 120ms ease, background-color 160ms ease;
}

button:hover {
  background: #2c2c2e;
}

button:active {
  transform: scale(0.98);
}

.meta {
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 12px;
}

@media (max-width: 480px) {
  .landing-icon {
    width: 80px;
    height: 80px;
  }

  h1 {
    font-size: 28px;
  }

  .lede {
    font-size: 15px;
  }
}
