:root {
  --text: #071927;
  --muted: #5f6f79;
  --accent: #169d98;
  --line: #d8e5e4;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  color: var(--text);
  background: #fff;
  font-family: Arial, Helvetica, sans-serif;
}

.page {
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 100vh;
  padding: 33vh 20px 34px;
}

.intro {
  display: grid;
  justify-items: center;
  align-content: start;
  text-align: center;
}

.logo {
  width: min(420px, 78vw);
  height: auto;
  margin-bottom: 10px;
}

h1 {
  width: min(420px, 78vw);
  margin: 0;
  font-size: clamp(18px, 3.3vw, 28px);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: 0;
}

.launch {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: clamp(10px, 1.8vw, 13px);
  line-height: 1.2;
}

.subscribe {
  width: min(560px, 100%);
  margin: 0 auto;
  text-align: center;
}

.subscribe p {
  margin: 0 auto;
  font-size: clamp(13px, 2.4vw, 16px);
  line-height: 1.25;
}



.contact {
  color: var(--text);
}

a {
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

@media (max-width: 520px) {
  .page {
    padding-top: 22vh;
  }
}
