/* Reset & base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.5;
  color: rgb(33, 33, 33);
  background-color: rgb(242, 241, 240);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 32px 24px;
  -webkit-font-smoothing: antialiased;
}

/* Main container */
.container {
  max-width: 480px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Logo */
.logo {
  margin-bottom: 48px;
}

.logo svg {
  height: 56px;
  width: auto;
  display: block;
}

/* Heading */
h1 {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

/* Intro text */
.intro {
  font-size: 16px;
  color: rgb(33, 33, 33);
  margin-bottom: 48px;
  max-width: 360px;
}

/* Buttons */
.buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 280px;
  margin-bottom: 48px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 24px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
  border-radius: 48px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid rgb(147, 147, 147);
  background-color: rgb(242, 241, 240);
  color: rgb(33, 33, 33);
}

.btn:hover {
  background-color: rgb(147, 147, 147);
  color: rgb(242, 241, 240);
}

.btn-copy {
  /* same styles as .btn */
}

/* "Or find me here" */
.find-me {
  font-size: 15px;
  color: rgb(147, 147, 147);
  margin-bottom: 16px;
}

/* Social links */
.socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 15px;
}

.socials a {
  color: rgb(147, 147, 147);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.socials a:hover {
  color: rgb(33, 33, 33);
}

.dot {
  color: rgb(147, 147, 147);
  user-select: none;
}

/* Responsive adjustments */
@media (max-width: 480px) {
  body {
    padding: 24px 20px;
  }

  .logo {
    margin-bottom: 40px;
  }

  h1 {
    font-size: 17px;
  }

  .intro {
    font-size: 15px;
    margin-bottom: 40px;
  }

  .buttons {
    margin-bottom: 40px;
  }
}