body {
  margin: 0;
  padding: 40px 100px;
  font-family: 'Inter', sans-serif;
  background: #f7f7f4;
  color: black;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 100px;
}

.logo {
  font-family: 'IBM Plex Mono';
  font-size: 24px;
}

.menu {
  display: flex;
  gap: 60px;
  font-size: 14px;
}

.menu a {
  text-decoration: none;
  color: black;
  font-family: 'IBM Plex Mono';
  transition: .3s;
}

.menu a:hover {
  opacity: .5;
}

.role {
  font-family: 'IBM Plex Mono';
  font-size: 14px;
  margin-bottom: 20px;
  transform: translateY(-10px);
}

h1 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 100px;
  font-weight: 600;
  line-height: .9;
  letter-spacing: -0.05em;
  margin: 0;
}

.description {
  font-family: 'Inter', sans-serif;
  margin-top: 40px;
  line-height: 1.8;
}

.buttons {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.button {
  padding: 18px 30px;
  border: 1px solid black;
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  color: black;
  font-family: 'IBM Plex Mono';
  font-size: 13px;
}

.black {
  background: black;
  color: white;
}

.square {
  width: 10px;
  height: 10px;
  background: black;
  margin-top: 45px;
}

footer {
  margin-top: 32px;  /* era 32px */
  margin-bottom: 28px;
}

.footer-content {
  font-family: 'IBM Plex Mono';
  font-size: 13px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  width: 100%;
  transform: translateY(-15px);
}

.footer-privacy {
  font-family: 'IBM Plex Mono';
  font-size: 11px;
  opacity: .4;
  text-align: center;
  margin-top: 12px;
  margin-bottom: 0;
}

.status-line {
  width: 100%;
  height: 1px;
  background: black;
  opacity: 0.2;
  margin-bottom: 30px;
}

.footer-content p:nth-child(1) { text-align: left; }
.footer-content p:nth-child(2) { text-align: center; }
.footer-content p:nth-child(3) { text-align: right; }

.contact-value a:hover { opacity: .45; }

.buttons { margin-top: 0; }

.logo a {
  text-decoration: none;
  color: black;
}

.logo a:hover {
  opacity: .5;
  transition: .3s;
}

.contact-right .buttons { margin-top: 0; }


/* ─────────────────────────────────────────
   MOBILE  (≤ 768px)
───────────────────────────────────────── */
@media (max-width: 768px) {

  body {
    padding: 28px 24px;
  }

  nav {
    margin-bottom: 60px;
  }

  .logo {
    font-size: 20px;
  }

  .menu {
    gap: 28px;
    font-size: 13px;
  }

  h1 {
    font-size: 58px;
  }

  .role {
    font-size: 11px;
    transform: none;
  }

  .description {
    font-size: 14px;
    margin-top: 28px;
    line-height: 1.7;
  }

  .buttons {
    flex-direction: column;
    gap: 12px;
    margin-top: 32px;
  }

  .button {
    text-align: center;
    padding: 16px 24px;
  }

  footer {
    margin-top: 32px;
    margin-bottom: 28px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 6px;
    transform: none;
  }

  .footer-content p:nth-child(1),
  .footer-content p:nth-child(2),
  .footer-content p:nth-child(3) {
    text-align: center;
  }

}