* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #ffffff;
  color: #111111;

  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  min-height: 100vh;

  display: flex;
  justify-content: center;

  padding: 80px 24px;
}

/* subtle grain */


.container {
  width: 100%;
  max-width: 920px;

  text-align: center;
}

.logo {
  width: 200px;

  margin: 0 auto 48px;

  display: block;
}

.intro h1 {
  font-size: 2.8rem;
  font-weight: 700;

  line-height: 1.1;

  margin-bottom: 36px;

  letter-spacing: -1px;
}

.intro p {
  font-size: 1.05rem;

  line-height: 1.9;

  color: #444;

  margin-bottom: 22px;

  max-width: 760px;

  margin-left: auto;
  margin-right: auto;
}

/* LINKS */
.links {
  margin-top: 48px;

  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 12px;
}

.link {
  width: 100%;
  max-width: 320px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 14px 18px;

  border: 1px solid #e8e8e8;
  border-radius: 14px;

  text-decoration: none;

  color: #111;
  background: #fff;

  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.link:hover {
  transform: translateY(-1px);

  background: #fafafa;

  border-color: #d6d6d6;
}

.link-left {
  display: flex;
  align-items: center;

  gap: 10px;

  font-size: 0.95rem;
  font-weight: 500;
}

.link svg {
  width: 18px;
  height: 18px;
}

.arrow {
  font-size: 0.9rem;
  color: #999;
}

/* mobile */
@media (max-width: 640px) {

  body {
    padding: 56px 20px;
  }

  .intro h1 {
    font-size: 2.2rem;
  }

  .intro p {
    font-size: 1rem;
    line-height: 1.8;
  }

}
